fable icon indicating copy to clipboard operation
fable copied to clipboard

Tidy time series forecasting

Results 70 fable issues
Sort by recently updated
recently updated
newest added

https://stackoverflow.com/questions/73289263/why-does-the-constant-coefficient-change-when-using-fablerefitreestimate-fals This could be an issue with exogenous regressors too.

I'm running the following code, ``` library(fable) library(tsibble) library(lubridate) library(dplyr) library(readr) library(tidyr) # Aggregate data as required agg_tourism % aggregate_key(State / Region, Trips = sum(Trips)) # Select training data train_df...

Hello, I was adding exogenous regressors to the forecasting hierarchy using ARIMA model and formula notation. It works well when the exogenous values are added to all levels in a...

Hi all, I'm not sure if there is a bug or, but think it is worth sharing that I am spotting differences in the MASE results comparing the output of...

I'm seeing a large difference in the performance of the [forecast ets function ](https://www.rdocumentation.org/packages/forecast/versions/8.16/topics/ets) and the [fable ETS function](https://fable.tidyverts.org/reference/ETS.html) when estimating multiple models, surprisingly in favor of forecast. Here's a...

improvement

Where possible, models should allow custom optimisation criterions. This is appropriate as a control parameter for models. from: https://github.com/robjhyndman/forecast/issues/744

enhancement

I am wondering if it is possible to add new error metrics to optimize forecasts on. RMSLE is a powerful metric for forecasts that should get penalized less for missing...

Hi there, I would like to know whether it is possible --after fitting a VAR model across different keys in a tsibble--to display the impulse response functions for each of...

- [x] NNETAR - [x] MEAN - [x] RW - [ ] VAR - [ ] CROSTON - [ ] THETA

Reported at https://stackoverflow.com/q/70782047/144157 ``` r library(fable) #> Loading required package: fabletools model_fit % model(mod = TSLM(Beer ~ Gas + trend())) fitted(model_fit, h = 2) #> # A tsibble: 218 x...

enhancement