gpt4 book ai didi

python - 连续绘制日期和数据 matplotlib

转载 作者:太空宇宙 更新时间:2023-11-04 05:24:22 24 4
gpt4 key购买 nike

我编写了以下代码,用于从文件中收集数据、为其添加时间戳并绘制它。我有以下工作代码:

temp_data=0
x=[datetime.now() + timedelta(hours=-i) for i in range(5)]
y=[temp_data+i for i in range(len(x))]
while True:

f=open("/sys/class/thermal/thermal_zone0/temp", "r")

#timestamp the data
temp_time=datetime.now()

#read the data in the file to a variable and divide by 1000 to get correct value
temp_data=int(f.readlines()[0].strip())/1000
x=x[1:]
x.append(temp_time)
y=y[1:]
y.append(temp_data)
plt.gcf().autofmt_xdate()
plt.plot(x,y)
plt.show()
sleep(5)


print "Good Bye, Exiting the Program"
#close file after reading
f.close()

现在发生的事情是,绘图得到显示,我必须关闭绘图窗口,以便下一组数据出现在绘图上。

我想进一步扩展它,其中我的绘图在读取文件并为其添加时间戳后连续绘制数据。

提前致谢。

最佳答案

您可以打开一个图形并按住它。

temp_data=0
x=[datetime.now() + timedelta(hours=-i) for i in range(5)]
y=[temp_data+i for i in range(len(x))]
plt.figure() ###### Create figure
while True:

f=open("/sys/class/thermal/thermal_zone0/temp", "r")

#timestamp the data
temp_time=datetime.now()

#read the data in the file to a variable and divide by 1000 to get correct value
temp_data=int(f.readlines()[0].strip())/1000
x=x[1:]
x.append(temp_time)
y=y[1:]
y.append(temp_data)
plt.hold(True) ##### Hold it.
plt.gcf().autofmt_xdate()
plt.plot(x,y)
plt.show()
sleep(5)


print "Good Bye, Exiting the Program"
#close file after reading
f.close()

关于python - 连续绘制日期和数据 matplotlib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39320890/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com