matplotlib不显示轴标题和轴名称

2024-09-25 12:29:36 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试创建一个图表,用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')`

没有出现在情节上

enter image description here

有人能帮忙吗


Tags: importmatplotlibasfigpltdaysadsanimation
1条回答
网友
1楼 · 发布于 2024-09-25 12:29:36

您可以调用ax1.clear(),它将擦除标签和标题。请在调用命令后尝试以下操作:

import matplotlib.pyplot as plt
import matplotlib.animation as animation
import time
from matplotlib import style
import datetime
import numpy as np

fig = plt.figure()
ax1 = fig.add_subplot(1,1,1)

def animate(i):
    xar = np.arange(10)
    yar = np.arange(10)

    ax1.clear()
    ax1.set_xlabel('Days')
    ax1.set_ylabel('Ads Posted')
    ax1.set_title('Autoposter Performance')
    ax1.plot(xar,yar, color='purple', linewidth=0.125)

ani = animation.FuncAnimation(fig, animate, interval=1000)

plt.show()

相关问题 更多 >