gpt4 book ai didi

python - 将ARMA模型拟合到python中按时间索引的时间序列

转载 作者:太空狗 更新时间:2023-10-30 02:57:49 44 4
gpt4 key购买 nike

我正在尝试将 ARMA 模型拟合到存储在 pandas 数据框中的时间序列。数据框有一列名为“val”的 numpy.float64 类型的值和一个 pandas 时间戳索引。时间戳采用“年-月-日时:分:秒”格式。我理解以下代码:

from statsmodels.tsa.arima_model import ARMA
model = ARMA(df["val"], (1,0))

给我错误信息:

ValueError: Given a pandas object and the index does not contain dates

因为我没有正确格式化时间戳。我如何索引我的数据框,以便 ARMA 方法在保留我的日期和时间信息的同时接受它?

最佳答案

我认为您需要将 index 转换为 DatetimeIndex :

df.index = pd.DatetimeIndex(df.index)

示例:

import pandas as pd
from statsmodels.tsa.arima_model import ARMA

df=pd.DataFrame({"val": pd.Series([1.1,1.7,8.4 ],
index=['2015-01-15 12:10:23','2015-02-15 12:10:23','2015-03-15 12:10:23'])})
print df
val
2015-01-15 12:10:23 1.1
2015-02-15 12:10:23 1.7
2015-03-15 12:10:23 8.4

print df.index
Index([u'2015-01-15 12:10:23',u'2015-02-15 12:10:23',u'2015-03-15 12:10:23'], dtype='object')

df.index = pd.DatetimeIndex(df.index)
print df.index
DatetimeIndex(['2015-01-15 12:10:23', '2015-02-15 12:10:23',
'2015-03-15 12:10:23'],
dtype='datetime64[ns]', freq=None)

model = ARMA(df["val"], (1,0))
print model
<statsmodels.tsa.arima_model.ARMA object at 0x000000000D5247B8>

关于python - 将ARMA模型拟合到python中按时间索引的时间序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35860357/

44 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com