auto.arima 将 .xreg 添加到术语名称时出现问题
Issue with auto.arima adding .xreg to term names
我有 运行 大约 90 个成功的时间序列 auto.arima 模型,但是对于 2 个模型,我的术语已用 xreg 重命名。添加到标题,这让我的循环变得混乱。
据我所知,这是在将漂移系数添加到模型输出时添加的(我的其他模型具有 AR 或 MA 系数)
Names in time series:
Volume
Price.Diff
School
Easter
Names in model outputs:
xreg.Price.Diff
xreg.School
xreg.Easter
我应该手动清理这些吗?
临时修复
for(i in 1:length(z$term)){
z$term<-gsub(z$term, pattern = 'xreg.',replacement = "")
}
注:
这是在模型使用漂移项和外生回归变量时发生的。
我有 运行 大约 90 个成功的时间序列 auto.arima 模型,但是对于 2 个模型,我的术语已用 xreg 重命名。添加到标题,这让我的循环变得混乱。
据我所知,这是在将漂移系数添加到模型输出时添加的(我的其他模型具有 AR 或 MA 系数)
Names in time series:
Volume
Price.Diff
School
Easter
Names in model outputs:
xreg.Price.Diff
xreg.School
xreg.Easter
我应该手动清理这些吗?
临时修复
for(i in 1:length(z$term)){
z$term<-gsub(z$term, pattern = 'xreg.',replacement = "")
}
注:
这是在模型使用漂移项和外生回归变量时发生的。