我正在使用statsmodels中的ccf计算互相关函数。效果很好,除非我看不到如何绘制置信区间。我注意到acf似乎具有更多功能。这是一个玩具示例,仅供参考:
import numpy as np
import matplotlib.pyplot as plt
import statsmodels.tsa.stattools as stattools
def create(n):
x = np.zeros(n)
for i in range(1, n):
if np.random.rand() < 0.9:
if np.random.rand() < 0.5:
x[i] = x[i-1] + 1
else:
x[i] = np.random.randint(0,100)
return x
x = create(4000)
y = create(4000)
plt.plot(stattools.ccf(x, y)[:100])
这给出了:
答案 0 :(得分:1)
不幸的是,statsmodels互相关函数(ccf)没有提供置信区间。在R中,ccf()也将打印置信区间。
在这里,我们需要自己计算置信区间,然后将其绘制出来。置信区间在此计算为2 / np.sqrt(lags)
。有关互相关置信区间的基本信息,请参考:
import numpy as np import matplotlib.pyplot as plt import statsmodels.tsa.stattools as stattools def create(n): x = np.zeros(n) for i in range(1, n): if np.random.rand() < 0.9: if np.random.rand() < 0.5: x[i] = x[i-1] + 1 else: x[i] = np.random.randint(0,100) return x x = create(4000) y = create(4000) lags= 4000 sl = 2 / np.sqrt(lags) plt.plot(x, list(np.ones(lags) * sl), color='r') plt.plot(x, list(np.ones(lags) * -sl), color='r') plt.plot(stattools.ccf(x, y)[:100])