Preprocessing
preprocessing
Modules:
| Name | Description |
|---|---|
series_semantic |
|
Modules
series_semantic
Functions:
| Name | Description |
|---|---|
constant_series |
Create a series with a constant value for each row of |
parse_datetime_with_tz |
Parse datetime strings with timezone info (both abbreviations and offsets) |
parse_time_military |
Parse time strings with multiple format attempts |
Attributes
Functions
constant_series(series, constant)
Create a series with a constant value for each row of series.
Source code in preprocessing/series_semantic.py
246 247 248 | |
parse_datetime_with_tz(s)
Parse datetime strings with timezone info (both abbreviations and offsets)
Source code in preprocessing/series_semantic.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | |
parse_time_military(s)
Parse time strings with multiple format attempts
Source code in preprocessing/series_semantic.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | |