feasts icon indicating copy to clipboard operation
feasts copied to clipboard

Feature Extraction And Statistics for Time Series

Results 34 feasts issues
Sort by recently updated
recently updated
newest added

Is the intended behavior of the `forecast` special within the x13 model to match that of the seasonal package? By way of example, with the `forecast.save` and `forecast.maxlead` arguments the...

It looks like setting `max_col = 0` does not remove colors from `gg_season()` as per the documentation. ``` r library(feasts) #> Loading required package: fabletools tsibbledata::aus_production %>% gg_season(Cement, max_col =...

Code: ``` p % model(ETS(Beer)) %>% gg_tsresiduals() ggsave("residuals.png", p) ``` Error: ``` Saving 9.1 x 3.26 in image Error in UseMethod("grid.draw") : no applicable method for 'grid.draw' applied to an...

got the same error with feasts... repr. example here: https://github.com/tidyverts/tsibble/issues/278 ``` df % as_tsibble(index=id,key=name) myPlot % group_by(name) %>% feasts::ACF(value) %>% feasts::autoplot() print(myPlot) Error in `stop_vctrs()`: ! + is not permitted...

I am trying to get x11 to perform an additive rather than a multiplicative decomposition. The us_retail_employment series in Hyndman's fpp3 (section 3.5) is clearly additive, nonetheless the x11 decomposition...

Hello, I was trying to change the degree of smoothness of the trend in an STL decomposition with no seasonal period. Below the codes: `dcmp % model(STL(Beer ~ trend(window =...

Fixed a small typo on the documentation.

Hi to everyone, i'm new using the feast package but i wonder if this correct, i'm trying to verify a cross correlation so i have: At this point i define...

Unless I am mistaken, it seems like the `ljung_box` feature requires manual specification for the `dof` and `lag` arguments outside of the defaults, which are 0 and 1 respectively. This...

Thank you for the amazing package. It's makes so much sense to have a *verse of time series packages that talk well with each other. I'm trying to correct for...