You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lags: int -- use passed value to shift all exog columns
lags="auto" -- compute the size of the shift automatically. In this case, estimate for each series the minimal number of steps required to cover all horizon. It may be possible that each exog series will have its own shift size. Computation may be performed using the last available date of the exog variable and the prediction horizon.
When lags="auto" parameter horizon is mandatory.
Name shifted columns in format {exog_name}_shift_{exog_shift_size}.
Test cases
Test all necessary parameters set when initialising the transform.
Test that names for transformed data are correct.
Test all exog data correctly shifted for both modes.
Test that transform works within Pipeline for both modes.
Add transform to inference tests.
Additional context
No response
The text was updated successfully, but these errors were encountered:
🚀 Feature Request
Add class
ExogShiftTransform
for automatic shift of exogenous data based on lag transform.Proposal
lags: int
-- use passed value to shift all exog columnslags="auto"
-- compute the size of the shift automatically. In this case, estimate for each series the minimal number of steps required to cover allhorizon
. It may be possible that each exog series will have its own shift size. Computation may be performed using the last available date of the exog variable and the prediction horizon.When
lags="auto"
parameterhorizon
is mandatory.Name shifted columns in format
{exog_name}_shift_{exog_shift_size}
.Test cases
Pipeline
for both modes.Additional context
No response
The text was updated successfully, but these errors were encountered: