You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Motivation: I want to fit an arfima model with regressors.
In arfima.R you are allowed to enter additional parameters that are carried forward to auto.arima. This is carried forward to line 156 where auto.arima is used and the ... is present.
However, as the default setting is "mle" fit, when you enter an xreg argument, the final fit doesn't display the xreg and the final arima fit is not working on the residuals of the xreg fit, see line 166 of the file.
I think this just needs a check to see if xreg is specified in ... and if so, the residuals of the xreg fit are carried forward and the xreg parameter estimates from auto.arima are carried forward to the final fit object too.
If you are happy with my (outline) suggested change I can make it in the code for you and commit.
The text was updated successfully, but these errors were encountered:
Motivation: I want to fit an arfima model with regressors.
In
arfima.R
you are allowed to enter additional parameters that are carried forward toauto.arima
. This is carried forward to line 156 whereauto.arima
is used and the...
is present.However, as the default setting is
"mle"
fit, when you enter anxreg
argument, the final fit doesn't display thexreg
and the finalarima
fit is not working on the residuals of thexreg
fit, see line 166 of the file.I think this just needs a check to see if
xreg
is specified in...
and if so, the residuals of thexreg
fit are carried forward and thexreg
parameter estimates fromauto.arima
are carried forward to the final fit object too.If you are happy with my (outline) suggested change I can make it in the code for you and commit.
The text was updated successfully, but these errors were encountered: