modeltime
modeltime copied to clipboard
Modeltime unlocks time series forecast models and machine learning in one framework
Looks at new_data for the number of complete rows to determine the chunk size, then generates the predicted values in chunks. It leads to some significant performance improvements in cases...
Hey guys, Can you help me? I'm working with forecast of SKUs. I'm trying to fit a set of time series models for many SKU by using the Nested Forecasting...
See reprex below. When adding a single predictor via `recipe(y ~ x)` or using all predictors via `recipe(y ~ .)` I am able to get future predictions from nested models...
Hi @mdancho84 , I just modified the `detect_net()` function to just look for the classes of the following parsnip functions when they have glmnet engine: - linear_reg - logistic_reg -...
Hi, it's a shame, that github doesn't offer a feature request button, so I need to ask here. Is there any planning on adding further parallel abilities to the framework?...
Hello @mdancho84, @AlbertoAlmuinha, I am using recursive forecasting on data where I have one target variable and a few independent variables. I have given reproducible codes in the end. With...
i'm using modeltime to forecast 20 time series (not balanced) at once using [Modeltime](https://cran.r-project.org/web/packages/modeltime/vignettes/getting-started-with-modeltime.html) package. However, when I call the function modeltime_calibrate i got the following error: `Error in glubort():...
Is there a reason why adam_reg(), engine auto.adam defaults to model = "ZXZ"? According to Ivans book, this translates to 'additive trends only'? https://openforecast.org/adam/ETSSelection.html
After successfully running modeltime_forecast on my test data, I wanted to refit the model to forecast forward into the future. Unfortunately I receive the following error message, which I am...
``` library(modeltime) library(timetk) library(tidyquant) library(tidyverse) library(tidymodels) horizon % mutate( rsi = TTR::RSI(outcome) # using e.g. mean() from base R works but not SMA() from TTR package ) %>% tk_augment_lags(outcome, .lags...