We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in combination_model(): ! combination_model() must use component models with the same response variable.
combination_model()
Example to reproduce error: library(fable) library(tsibbledata)
f1 <- formula(Tobacco ~ Beer) f2 <- formula(Tobacco ~ Gas)
fabletools::model(aus_production , cmbn1 = combination_model( NNETAR(formula = f1) , NNETAR(formula = f2) , cmbn_args = list(weights = "inv_var")))
The text was updated successfully, but these errors were encountered:
Duplicate posting of issue
Sorry, something went wrong.
No branches or pull requests
Error in
combination_model()
:!
combination_model()
must use component models with the same response variable.Example to reproduce error:
library(fable)
library(tsibbledata)
f1 <- formula(Tobacco ~ Beer)
f2 <- formula(Tobacco ~ Gas)
fabletools::model(aus_production
, cmbn1 = combination_model(
NNETAR(formula = f1)
, NNETAR(formula = f2)
, cmbn_args = list(weights = "inv_var")))
The text was updated successfully, but these errors were encountered: