当我向函数添加外生变量时,单变量 ARIMA 模型会变成多变量吗?我在 r 中用函数 xreg 做了这个

Does a univariate ARIMA model become mulitvariate when I add exogenous variabels to the function? I did this in r with the function xreg

当我向函数中添加外生变量时,单变量 ARIMA 模型会变成多变量吗?我在 r 中用函数 xreg.

做了这个

例如:fitwithtwoexfactors = arima(futoilrtn,order=c(0,0,1), xreg=exogenous)

exogenous 是一个包含两列的数据框。

ARIMA 模型不会变成多变量模型。多变量模型是具有两个或多个因变量的模型。 objective外生变量是希望通过最小化MSE对未来做出更好的预测。