我使用Python的matplotlib acorr来绘制时间序列的自相关性,但是图形总是包含负滞后。因为自相关函数总是偶数,我想去掉图中负的x轴。是否有可以传递给acorr的参数?
acorr
qhhrdooz1#
使用plt.xlim([0,<whaterver is the highest value>])对我很有效。你可以看到来自Diziet Asahi here的原始帖子
plt.xlim([0,<whaterver is the highest value>])
1条答案
按热度按时间qhhrdooz1#
使用
plt.xlim([0,<whaterver is the highest value>])
对我很有效。你可以看到来自Diziet Asahi here的原始帖子