重命名 R 预测包中 arima summary() 输出中的 xreg 变量名称
我在 R 中使用 forecast
包。
Hyndman 说:
R 中的 arima()
函数(以及 forecast
包中的 Arima()
和 auto.arima()
)拟合回归ARIMA 错误。
我有 auto.arima()
的输出,
Regression with ARIMA(5,0,0) errors
Coefficients:
ar1 ar2 ar3 ar4 ar5 intercept xreg1 xreg2 xreg3 xreg4
xreg5 xreg6 xreg7 xreg8 xreg9
0.0212 -0.0530 0.7005 -0.0232 0.0334 862.0474 -4e-04 -0.0303 -0.0659 -0.1657 4.4673 0.1958 0.3381 -0.4270 5.3478
s.e. 0.0087 0.0086 0.0062 0.0087 0.0087 285.6206 1e-04 0.0604 0.0648 1.7225 0.5952 0.0213 0.0138 0.1415 0.0707
sigma^2 = 15.05: log likelihood = -37334.05
AIC=74700.1 AICc=74700.14 BIC=74820.22
Training set error measures:
ME RMSE MAE MPE MAPE MASE ACF1
Training set -0.0001219744 3.877156 1.434961 NaN Inf 0.3321699 -0.007453887
我可以以某种方式重命名所有 xreg
变量并在摘要输出中使用真实姓名吗?
I use forecast
package in R.
Hyndman says:
The arima()
function in R (and Arima()
and auto.arima()
from the forecast
package) fits a regression with ARIMA errors.
I have an output for auto.arima()
Regression with ARIMA(5,0,0) errors
Coefficients:
ar1 ar2 ar3 ar4 ar5 intercept xreg1 xreg2 xreg3 xreg4
xreg5 xreg6 xreg7 xreg8 xreg9
0.0212 -0.0530 0.7005 -0.0232 0.0334 862.0474 -4e-04 -0.0303 -0.0659 -0.1657 4.4673 0.1958 0.3381 -0.4270 5.3478
s.e. 0.0087 0.0086 0.0062 0.0087 0.0087 285.6206 1e-04 0.0604 0.0648 1.7225 0.5952 0.0213 0.0138 0.1415 0.0707
sigma^2 = 15.05: log likelihood = -37334.05
AIC=74700.1 AICc=74700.14 BIC=74820.22
Training set error measures:
ME RMSE MAE MPE MAPE MASE ACF1
Training set -0.0001219744 3.877156 1.434961 NaN Inf 0.3321699 -0.007453887
Can I rename all xreg
variables somehow and have real names in my summary output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将矩阵的列命名为您喜欢的任何名称。
由 reprex 软件包 (v2.0.1) 创建于 2022 年 3 月 1 日
Name the columns of the matrix to whatever you like.
Created on 2022-03-01 by the reprex package (v2.0.1)