statistic_utils
iqr_calculation(input_data, percent=50)
¶
return quarter of the input_data
Source code in exe_kg_lib/utils/task_utils/statistic_utils.py
54 55 56 |
|
outlier_calculation(input, iq1=None, iq3=None)
¶
return the outliers in the data
Source code in exe_kg_lib/utils/task_utils/statistic_utils.py
59 60 61 62 63 64 65 66 67 68 |
|
trend_calculation(input_data, half_window_size=2, padding='same')
¶
calculate the trend of the data, which is the sliding-window average
Source code in exe_kg_lib/utils/task_utils/statistic_utils.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
Last update: October 20, 2023