How to combine the NULL model in fable package

fit1 <- train %>%
model(
ets = ETS(value),
arima = ARIMA(value),
SNAIVE= SNAIVE(value ~ lag("year")),
prophet = prophet(value),
nn = NNETAR(value),
var=VAR(value ~ AR(4)),
tslm=TSLM(value ~ trend() + season())

) %>%
mutate(
mixed = (ets + arima + tslm + prophet + nn + var)/6
)

fc1 <- fit1 %>% forecast(h = "1 years")

#for example if ARIMA model is NULL then mixed values in fc1 would not throw any result. We need mixed model value in fc1 that excludes NULL model and give us results. Can anyone help us? we are using Fable package

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.