capability__exogeneous#
- capability__exogeneous()[source]#
Capability: the forecaster can use exogenous data.
The tag is currently named
ignores-exogeneous-X, and will be renamed.False= does use exogenous data,True= does not use exogenous data.String name:
"capability:exogenous"Public capability tag
Values: boolean,
True/FalseExample:
TrueDefault:
FalseAlias: boolean negation of
"ignores-exogeneous-X"(legacy)
Exogenous data are additional time series, that can be used to improve forecasting accuracy.
If the forecaster uses exogenous data (
capability:exogenous=True), theXparameter infit,predict, and other methods can be used to pass exogenous data to the forecaster.If the
X-y-must-have-same-indextag isTrue, then such data must always have an index that contains that of the target series, i.e.,yinfit, or the indices specified byfhinpredict.If the tag is
False, the forecaster does not make use of exogenous data.Xparameters can still be passed to methods, to ensure a uniform interface, but the data will be ignored, i.e., not used in the internal logic of the forecaster.