X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Futils.py;h=a56ee3e105536cf8a501453a4a7074fca4545e63;hp=7037404c270e1871eca638709cb83355e26568fc;hb=a0918a2c7112621563f14ba06a7aee3eaa3ac711;hpb=2036f500644bf34aebfd3456278d0efd0b9ab79f diff --git a/resources/tools/presentation/utils.py b/resources/tools/presentation/utils.py index 7037404c27..a56ee3e105 100644 --- a/resources/tools/presentation/utils.py +++ b/resources/tools/presentation/utils.py @@ -82,6 +82,10 @@ def remove_outliers(input_data, outlier_const): for y in data.tolist(): if quartile_set[0] <= y <= quartile_set[1]: result_lst.append(y) + print(quartile_set) + print(input_data) + print(result_lst) + print("") return result_lst