Closed dashaub closed 5 years ago
The function calls are not formatted the same was as the base models in the "forecast" package. For example, compare
a1 <- auto.arima(wineind) a1$call
with
h1 <- hybridModel(wineind) h1$auto.arima$call
This might be able to be fixed by modifying the do.call() functions that call the individual component models.
do.call()
A possible solution is to clean this up by overwriting $call for each component model after it is created with do.call.
$call
do.call
The function calls are not formatted the same was as the base models in the "forecast" package. For example, compare
with
This might be able to be fixed by modifying the
do.call()
functions that call the individual component models.