TimeIndexTransformer¶
yohou.preprocessing.time_features.TimeIndexTransformer
¶
Bases: BaseTransformer
Convert the time column to a numeric index with optional polynomial terms.
Produces integer or normalized time step indices starting from the first observed timestamp, useful as trend features for reduction forecasters.
The base index at time step \(t\) is:
where \(t_0\) is the first observed timestamp and \(\Delta t\) is the
detected time interval. When normalize=True, the index is
scaled by the number of fit steps:
where \(N\) is n_steps_. Polynomial features of degree \(d\) are
then \(\tilde{x}(t),\, \tilde{x}(t)^2,\, \ldots,\, \tilde{x}(t)^d\).
Parameters¶
| Name | Type | Description | Default |
|---|---|---|---|
normalize
|
bool
|
If |
False
|
degree
|
int
|
Polynomial degree. |
1
|
Attributes¶
| Name | Type | Description |
|---|---|---|
first_time_ |
datetime
|
First observed timestamp, used as reference for index computation. |
n_steps_ |
int
|
Number of time steps in the fit data. Used as normalization
denominator ( |
See Also¶
CalendarFeatureTransformer: Calendar features (month, day of week, etc.).FourierFeatureTransformer: Sin/cos harmonics for cyclical encoding.PolynomialTrendForecaster: Forecaster-level polynomial trend estimation.
Examples¶
>>> import polars as pl
>>> from datetime import datetime
>>> time = pl.datetime_range(
... start=datetime(2020, 1, 1), end=datetime(2020, 1, 11), interval="1d", eager=True
... )
>>> X = pl.DataFrame({"time": time, "value": range(len(time))})
>>> transformer = TimeIndexTransformer(degree=2)
>>> transformer.fit(X)
TimeIndexTransformer(degree=2)
>>> X_t = transformer.transform(X)
>>> X_t["time_index"][0]
0
>>> "time_index_2" in X_t.columns
True
Source Code¶
Show/Hide source
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | |
Methods¶
get_feature_names_out(input_features=None)
¶
Get output feature names for transformation.
Parameters¶
| Name | Type | Description | Default |
|---|---|---|---|
input_features
|
array-like of str or None
|
Input feature names (unused, for API compatibility). |
None
|
Returns¶
| Type | Description |
|---|---|
list of str
|
Generated time index feature column names. |
Source Code¶
Show/Hide source
Tutorials¶
The following example notebooks use this component:
-
How to Add Calendar, Fourier, and Holiday Features
Data-Features
Enrich your feature matrix with time-derived signals using CalendarFeatureTransformer, FourierFeatureTransformer, and HolidayFeatureTransformer.