我成功运行了约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 = "")
}
答案 0 :(得分:0)