Preprocessing
cibmangotree.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 src/cibmangotree/preprocessing/series_semantic.py
274 275 276 | |
parse_datetime_with_tz(s)
¶
Parse datetime strings with timezone info (both abbreviations and offsets)
Source code in src/cibmangotree/preprocessing/series_semantic.py
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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | |
parse_time_military(s)
¶
Parse time strings with multiple format attempts
Source code in src/cibmangotree/preprocessing/series_semantic.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |