📜  python acf 和 pacf 代码 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:08.741000             🧑  作者: Mango

代码示例1
fig = plt.figure(figsize=(12,8))
ax1 = fig.add_subplot(211)
fig = sm.graphics.tsa.plot_acf(dta.values.squeeze(), lags=40, ax=ax1)
ax2 = fig.add_subplot(212)
fig = sm.graphics.tsa.plot_pacf(dta, lags=40, ax=ax2)