plt.figure() #新开一个图窗 diff1=data.diff(1) plt.plot(diff1,label='一阶') diff2=data.diff(2) plt.plot(diff2,label='二阶') plt.legend()
时间: 2024-05-22 18:11:31 浏览: 130
matplotlib 曲线图 和 折线图 plt.plot()实例
5星 · 资源好评率100%
这段代码是用来绘制数据的一阶差分和二阶差分的折线图,并且通过`plt.legend()`给不同的折线添加图例。其中,`data`是一个数据序列,`diff()`函数可以计算出序列的差分序列,`plt.plot()`函数用于绘制折线图。你需要导入`matplotlib.pyplot`模块才能运行这段代码。
阅读全文