【发布时间】:2020-06-10 02:51:26
【问题描述】:
我正在尝试创建一个图表来使用 matplotlib 绘制一些数据
import matplotlib.pyplot as plt
import matplotlib.animation as animation
import time
from matplotlib import style
import datetime
fig = plt.figure()
ax1 = fig.add_subplot(1,1,1)
ax1.xlabel('Days')
ax1.ylabel('Ads Posted')
ax1.title('Autoposter Performance')
def animate(i):
pullData = open("data.txt","r").read()
dataArray = pullData.split('\n')
xar = []
yar = []
for eachLine in dataArray:
if len(eachLine)>1:
x,y = eachLine.split(',')
xar.append(int(x))
yar.append(int(y))
ax1.clear()
ax1.plot(xar,yar, color='purple', linewidth=0.125)
ani = animation.FuncAnimation(fig, animate, interval=1000)
plt.show()
我设置的轴名称和标题
ax1.xlabel('Days')
ax1.ylabel('Ads Posted')
ax1.title('Autoposter Performance')`
没有出现在剧情中
谁能帮忙?
【问题讨论】:
标签: python matplotlib plot axis-labels