我正在用python绘制自相关。我用了三种方法来做:1.pandas,2.matplotlib,3.statsmodels。我发现我从matplotlib得到的图表与其他两个不一致。代码是:fromstatsmodels.graphics.tsaplotsimport*#printoutdataprintmydata.values#1.pandasp=autocorrelation_plot(mydata)plt.title('mydata')#2.matplotlibfig=plt.figure()plt.acorr(mydata,maxlags=150)plt.title('myd