diff options
author | Vratko Polak <vrpolak@cisco.com> | 2018-04-26 18:35:58 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-04-26 18:15:17 +0000 |
commit | 3c510d8dd18bd8ceb2c5d86ed058976e72ddead4 (patch) | |
tree | 268d57c9922ec19ab913eb3adebc78cb435a67bc /resources/tools/presentation/generator_tables.py | |
parent | 5d040b65766fa5d7d6ad111def619abb8c878b87 (diff) |
Trending: switch back to 3*stdev
Reporting many fake pro/regressions is worse
then missing few of the real ones.
Change-Id: I2b23ae14ac4462b993dff8d1b15fb1e472caf490
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 46aa71ca48..4ffa08122d 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -808,9 +808,9 @@ def table_performance_trending_dashboard(table, input_data): or isnan(stdev_t[build_nr]) \ or isnan(value): classification_lst.append("outlier") - elif value < (median_t[build_nr] - 2 * stdev_t[build_nr]): + elif value < (median_t[build_nr] - 3 * stdev_t[build_nr]): classification_lst.append("regression") - elif value > (median_t[build_nr] + 2 * stdev_t[build_nr]): + elif value > (median_t[build_nr] + 3 * stdev_t[build_nr]): classification_lst.append("progression") else: classification_lst.append("normal") |