I would like to take advantage of Fable's ability to back transform results for a regression. Unfortunately, I have been unable to do so using a VAR model in Fable. I have tried several options such as:
fit <- model_data_ts %>%
model(
aicc = VAR(vars(log(IC, E_U))),
bic = VAR(vars(log(IC, E_U)), ic = "bic")
)
The above code is not back transformed in the results. I can just do this manually, but wanted to understand what is not working.