fabletools
fabletools copied to clipboard
General fable features useful for extension packages
I can't seem to figure out how to add arguments to `feat_stl` when it is used inside of `features()`. I would expect an anonymous function to work, but it doesn't....
Should the model object also store these parameters? From #103 ``` r library(fable) #> Loading required package: fabletools library(dplyr) #> #> Attaching package: 'dplyr' #> The following objects are masked...
Possibly related to #366, the `` class will be expanded and formalised to describe the aggregation structure and constraints across these models. This layer is required to implement computations across...
This is more of a question than an issue if this behaviour is expected: ``` r library(fable) #> Loading required package: fabletools library(tsibble) #> #> Attaching package: 'tsibble' #> The...
```r coverage
When a model is linked with others in a list (possibly with some reconciliation/aggregation constraints) it should be possible to bootstrap the series using the same time point across all...
Amazing package here, thanks! I really appreciate the design of extendable models which is so nicely described in your vignette. It seems that it should also be possible to extend...
Related: https://github.com/earowang/hts/pull/51
Hi, I am reposting this issue on GitHub, with a more complete example, as I suspect it might not be related to the data being used or code mistakes. I...
https://github.com/tidyverts/fabletools/blob/9794d225a37e79aaab18655692eca54bb3e1aed7/R/model.R#L100 ``` r future::plan(future::multisession) rlang::is_attached("package:future") #> [1] FALSE library(future) rlang::is_attached("package:future") #> [1] TRUE ``` Created on 2022-06-27 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1) Is this an intended behaviour? It took me...