dtplusWeeks1
dtplusWeeks1 is a derived date-time feature used in time-series data preparation and feature engineering. It denotes a date-time value obtained by adding a one-week offset to an original date-time timestamp, effectively shifting the timeline forward by seven days.
Purpose and use: It is used to create forward-looking features for forecasting, align predictors with future
Computation: For a base date-time value dt, dtplusWeeks1 equals dt plus seven days. In common environments: Python:
Variations and conventions: The term dtplusWeeks1 reflects a conventional shorthand that may appear with different naming
Limitations: Care is required to avoid data leakage when using forward-shifted features in time-based validation, to
See also: Time delta, Lead feature, Lag feature, Feature engineering.