📜  如何在同一窗口中从 2 个数据帧绘制图形 python 代码示例

📅  最后修改于: 2022-03-11 14:47:12.747000             🧑  作者: Mango

代码示例1
fig = plt.figure()

for frame in [newdf, newdf2, newdf3, newdf4, newdf5]:
    plt.plot(frame['Time'], frame['Data'])

plt.xlim(0,18000)
plt.ylim(0,30)
plt.show()