mlr3temporal
mlr3temporal copied to clipboard
Forecasting for mlr3
These seem to be prediction intervals. https://github.com/mlr-org/mlr3temporal/blob/30c6db98da6d86e219ae12c2b91e5560730833e4/R/PredictionForecast.R#L84
### Description I am inspecting code for `TaskForecast` class. In this part: ``` data = function(rows = NULL, cols = NULL, data_format = "data.table") { data = super$data(rows, cols, data_format)...
See here: * https://github.com/mlr-org/mlr3/blob/main/tests/testthat/setup.R * https://github.com/mlr-org/mlr3/blob/main/tests/testthat/teardown.R
Not your mistake, but I think it might be better to have this consistent with mlr3, i.e. have a "featurelesss" learner that allows to use the median or mean. Does...
Hello there! I really need to use the forecast.holdout resampling as I am working with temporal data. As it seems, mlr3temporal cannot be installed at this moment (its labeled as...
added tests for rbind and cbind for TaskRegrForecast. As soon as issue #42 is fixed this branch may be merged
bug found in auto test: ``` tasks$missings_each_row = proto$clone()$select(character())$cbind(data) Error in `$.R6`(self$backend, date_col) : R6 class DataBackendCbind/DataBackend/R6 does not have slot 'date_col'! ```
implement autoplot for prediction which shows: - true values - predicted values - confidence interval for prediction
**Description:** I am interested in contributing to the `mlr3temporal` package and would like to propose the addition of a simple "forecast.persistence" learner. (This would be my first contribution to the...