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
Hi, thanks for the tsDyn package. Quick comment about the predict_rolling() function help page example. If the predicted values are one-step-ahead out-of-sample forecasts, then I believe your one line of code should actually be:
Hi, thanks for the tsDyn package. Quick comment about the
predict_rolling()
function help page example. If the predicted values are one-step-ahead out-of-sample forecasts, then I believe your one line of code should actually be:preds_roll_ts <- ts(preds_roll$pred, start=time(barry)[nrow(barry) - 9], freq = 12)
Currently, you have
nrow(Barry) - 10
. Please let me know if I have misunderstood the intent of your function. Thanks.Best,
-- Phil
The text was updated successfully, but these errors were encountered: