Back to models
Forecaster

IgnoreX

Categorical in XInsamplePred int insampleExogenous

Compositor for ignoring exogenous variables.

Quickstart

python
from sktime.forecasting.compose import IgnoreX

estimator = IgnoreX(forecaster, ignore_x=True)

Parameters(2)

forecastersktime forecaster, BaseForecaster descendant instance
The forecaster to wrap.
ignore_xbool, optional (default=True)

Whether to ignore exogenous data or not, this parameter is useful for tuning.

  • True: ignore exogenous data, X is not passed on to forecaster

  • False: use exogenous data, X is passed on to forecaster