模块“statsmodels.graphics”没有属性“tsa”

ffdz8vbo  于 2021-08-20  发布在  Java
关注(0)|答案(0)|浏览(376)

**已关闭。**此问题不可复制或由打字错误引起。它目前不接受答案。
**想要改进此问题?**更新问题,使其位于堆栈溢出主题上。

12小时前关门。
改进这个问题

fig=plt.figure(figsize=(12,8))
ax1=fig.add_subplot(211)
fig=sm.graphics.tsa.plot_acf(df['seasonal first difference'].iloc[13:],lags=40,ax=ax1)
ax2=fig.add_subplot(212)
fig=sm.graphics.tsa.plot_pacf(df['seasonal first difference'].iloc[13:],lags=40,ax=ax2)

错误----

AttributeError: module 'statsmodels.graphics' has no attribute 'tsa'

我使用的是statsmodels v0.12.2

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题