From 157aa10abdfb9c53f8e687da97ac72e9a724b457 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Thu, 7 Mar 2024 12:00:04 +0000 Subject: C-Dash: Add possiblity to remove outliers from comparison data - extreme outliers only for now Change-Id: I2be7c291dd207d5a557947415a960fa6d0067c64 Signed-off-by: Tibor Frank --- csit.infra.dash/app/cdash/utils/constants.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'csit.infra.dash/app/cdash/utils/constants.py') diff --git a/csit.infra.dash/app/cdash/utils/constants.py b/csit.infra.dash/app/cdash/utils/constants.py index c86f4d5136..5ed5a8cbd7 100644 --- a/csit.infra.dash/app/cdash/utils/constants.py +++ b/csit.infra.dash/app/cdash/utils/constants.py @@ -358,6 +358,24 @@ class Constants: # Default name of downloaded file with selected data. COMP_DOWNLOAD_FILE_NAME = "comparison_data.csv" + # This parameter specifies the method to use for estimating the percentile. + # Possible values: + # - inverted_cdf + # - averaged_inverted_cdf + # - closest_observation + # - interpolated_inverted_cdf + # - hazen + # - weibull + # - linear (default) + # - median_unbiased + # - normal_unbiased + COMP_PERCENTILE_METHOD = "linear" + + # Extreme or mild outlier? + OUTLIER_EXTREME = 3 + OUTLIER_MILD = 1.5 + COMP_OUTLIER_TYPE = OUTLIER_EXTREME + ############################################################################ # Statistics. -- cgit 1.2.3-korg