fabletools
fabletools copied to clipboard
General fable features useful for extension packages
When using custom transformation functions (like `my_scaled_logit()` below), the modeling functions like `ETS()` or `ARIMA()` seem to search only the global environment for their definition. When run inside a different...
Using a multivariate response with univariate models could estimate each response variable independently using the same model structure. https://stackoverflow.com/questions/67051079/r-forecasting-fable-package-multivariate-decompostion-model
I am trying to run an experiment where I have time series that contains only one non-zero observation. Th experiment runs for the following example where I have two non-zero...
xreg specials typically error or call `model.frame()` for an interface consistent with `lm()`. Rather than requiring model developers to rewrite this common pattern for each model, providing helpers in fabletools...
There are many cases in which NULL can be generated from other tidyverse tools. Handling NULL models should be handled with the simpler `NULL` value.
Hi, When forecasting off the back of a `components()` call, you run into an issue because there is already a '.model' column. I ran into this when running through Chapter...
`forecast::baggedModel()` It should accept a model definition for decomposition, and then use a time series bootstrap to produce bootstrapped residuals for the decomposition, which are then recombined to give bootstrapped...
Currently running forecast on a mable fails if any of the models errors out when being forecasted. Is there a way to either drop it completely or return some "NULL...