Forecaster
MultioutputTabularRegressionForecaster
Multioutput reduction from forecasting to tabular regression.
Quickstart
python
from sktime.forecasting.compose import MultioutputTabularRegressionForecaster
estimator = MultioutputTabularRegressionForecaster(estimator, window_length=10, transformers=None, pooling='local')Parameters(2)
- estimatorEstimator
- A tabular regression estimator as provided by scikit-learn.
- window_lengthint, optional (default=10)
- The length of the sliding window used to transform the series into a tabular matrix.