我已经开始学习statsmodels包,无法用arima实现基本的预测.
错误是
ValueError: Given a pandas object and the index does not contain dates
我正在尝试这个版本:
df = make_df(filename_data)
y = []
x = []
# here I am preparing day by day sequence as that I have inconsistent data and I set 0 to NAN values
start_date = df[date_col].min()
end_date = df[date_col].max()
while start_date <= end_date:
x.append(start_date)
try:
y.append(
df[df[date_col] == start_date][rev_col].values[0])
except:
y.append(0)
start_date += datetime.timedelta(days=1)
y = np.array(y)
x = np.array(x)
y = pd.TimeSeries(y, index=x)
print(y)
arma_mod = sm.tsa.ARMA(y, order=(2,2))
arma_res = arma_mod.fit(trend='nc', disp=-1)
在此之前我尝试过
df = make_df(filename_data)
y = np.array(df[rev_col])
x = np.array(df[date_col])
y = pd.TimeSeries(y, index=x)
为什么会这样?
日期 – 收入数据看起来不错:
2014-08-04 59477
2014-08-05 29989
2014-08-06 29989
2014-08-07 116116
解决方法:
您可以使用as_matrix()简单地转换DataFrame.
工作代码示例:
from statsmodels.tsa.arima_model import ARIMA
import numpy as np
def plot_residuals(data, ord=(2, 0, 1)):
model = ARIMA(endog=data, order=(ord[0], 0, ord[1])).fit()
plt.plot(model.resid)
plt.show()
data = np.log(data.values) - np.log(data.values.shift()).to_frame().dropna().as_matrix()
plot_residuals(data, (2, 0, 1))
由于statsmodels有许多未解决的问题,它只能暂时帮助你.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。