Python:遍历数据框并为每个数据点创建一个图

时间:2018-09-24 12:28:25

标签: python python-3.x pandas dataframe matplotlib

以下代码生成折线图。在此,x轴是公共的,y轴被分为两个(y1和y2),并针对x进行绘制。我正在使用 savefig()将图另存为.PNG文件。

现在,我需要在每个数据点(或x的每个值)生成图像,以便这些图像就像原始图形的帧一样。我尝试使用' Iterrows '遍历数据帧。但是,这并没有解决。

PS:我打算使用这些生成的帧通过 ffmpeg 将其转换为视频。 Animate()在这里没有达到我的目的,因此没有使用它。快速帮助将不胜感激。

谢谢!

def MakeLineGraph(stats,title, savegraph) :

x = stats[stats.columns[1]]
y1 = stats[stats.columns[2]]
y2 = stats[stats.columns[3]]
xlab = list(stats)[1]
ylab = list(stats)[0]

fig = plt.figure()
pli = plt.subplot()

pli.plot(x, y1, color='g', linewidth=5.0, label='label1')
pli.plot(x, y2, color='y', linewidth=5.0, label='label2')

plt.xlabel(xlab)
plt.ylabel(ylab)
plt.title(title)

# Removing the plot frame lines.
ax = plt.subplot(111)
ax.spines["top"].set_visible(False)
ax.spines["bottom"].set_visible(False)
ax.spines["right"].set_visible(False)
ax.spines["left"].set_visible(False)

ax.get_xaxis().tick_bottom()
ax.get_yaxis().tick_left()

leg = plt.legend()

for line in leg.get_lines():
    line.set_linewidth(6)

if len(x) < 25:
    pli.xticks(x.tolist())

plt.show()

if (savegraph == True):
    fig.set_size_inches((19.2, 10.8))
    fig.savefig(image_folder + 'Progress.png', transparent=True, dpi=600)

1 个答案:

答案 0 :(得分:0)

感谢您的投入。 我稍微修改了代码就解决了这个问题。需要注意的是,我仅共享核心部分,格式设置与上面相同。

def MakeLineGraph(stats,title, savegraph) :

x = stats[stats.columns[1]]
y1 = stats[stats.columns[2]]
y2 = stats[stats.columns[3]]
xlab = list(stats)[1]
ylab = list(stats)[0]

fig, pli = plt.subplots()

pli = plt.subplot()
pli.imshow(pltimg, extent=[0, 95, 0, 55])

line, = pli.plot(x, y1, color='g', linewidth=5.0, label='label1')
for n in range(len(x)):
    line.set_data(x[:n], y1[:n])
    fig.canvas.draw()
    fig.savefig('./frames/Frame%03d.png' % n)

line, = pli.plot(x, y2, color='y', linewidth=5.0, label='label2')
for n in range(len(x)):
    line.set_data(x[:n], y2[:n])
    fig.canvas.draw()
    fig.savefig('./frames/Frame%03d.png' % n)