python statsmodels ARMA plot_predict

时间:2015-02-12 10:50:16

标签: python statsmodels

我正在使用statsmodels来计算带有预测的ARMA模型。我想改变趋势的颜色但是我得到一个错误:

  

fig = arma_mod30.plot_predict('2011','2015',color ='#FF6600',dynamic = True,ax = ax,plot_insample = False)TypeError:plot_predict()   得到了一个意想不到的关键字参数'color'

绘图代码:

 fig, ax = plt.subplots(figsize=(12, 8))
 ax = d.ix['2009':].plot(ax=ax,label='Trend',color='#0000FF')
 fig = arma_mod30.plot_predict('2011', '2018', color='#FF6600',  dynamic=True, ax=ax, plot_insample=False)
 plt.title('Forecast Trend')
 plt.xlabel('year')
 plt.ylabel('value')
 plt.savefig('Output.png')

1 个答案:

答案 0 :(得分:1)

此示例基于statsmodels'文档中plot_predict的示例代码:

在这里,我使用mpl.rc_context()暂时更改图形的颜色周期。

with mpl.rc_context():
    mpl.rc('axes', color_cycle=['#0000FF', '#FF6600'])
    dta = sm.datasets.sunspots.load_pandas().data[['SUNACTIVITY']]
    dta.index = pd.DatetimeIndex(start='1700', end='2009', freq='A')
    res = sm.tsa.ARMA(dta, (3, 0)).fit()
    fig, ax = plt.subplots()
    ax = dta.ix['1950':].plot(ax=ax)
    fig = res.plot_predict('1990', '2012', dynamic=True, ax=ax,
                           plot_insample=False)

这可能有些神圣,但它应该可以解决你的问题:

plot