gpt4 book ai didi

python - Pandas :自相关图在哪里?

转载 作者:行者123 更新时间:2023-12-01 01:08:14 24 4
gpt4 key购买 nike

我正在尝试使用 pandas 绘制时间序列的 autocorrelation_plot()。据此SO post pandas.tools 在 0.24.0 中被删除,autocorrelation_plot 函数现在可以在 pandas.plotting 库中找到。然而API没有显示对此函数的引用。

我可以通过导入函数来绘制自相关,但在哪里可以找到文档?

from pandas.plotting import autocorrelation_plot # works fine

slope = -1
offset = 250
noise_scale = 100
npts = 100

x = np.linspace(0, 100, npts)
y = slope*x + noise_scale*np.random.rand(npts) + offset

autocorrelation_plot(y)

auto_correlation-plot

Python:3.7.2

Pandas :0.24.1

最佳答案

我认为这可能更适合作为 GitHub 中的一个问题。

无论如何,autocorrelation_plot 和类似的图(andrews_curvesradviz...)可能会被移出pandas,放入一个单独的包中。因此,您可以预期将来必须调用类似 pandas_matplotlib.autocorrelation_plot() 的内容(请参阅 #28177 )。

与此同时,我将它和其他一些缺失的函数添加到 #28179 中的文档中。 。合并拉取请求后,您将能够在 https://dev.pandas.io 中看到文档。 。但是 autocorrelation_plot 没有什么非常有趣的地方:

enter image description here

关于python - Pandas :自相关图在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55123345/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com