aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_CPTA.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/presentation/generator_CPTA.py')
-rw-r--r--resources/tools/presentation/generator_CPTA.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/resources/tools/presentation/generator_CPTA.py b/resources/tools/presentation/generator_CPTA.py
index e3cc55f8cf..d72be3d589 100644
--- a/resources/tools/presentation/generator_CPTA.py
+++ b/resources/tools/presentation/generator_CPTA.py
@@ -172,13 +172,13 @@ def _evaluate_results(trimmed_data, window=10):
if first:
first = False
continue
- if (np.isnan(value) \
- or np.isnan(tmm[build_nr]) \
+ if (np.isnan(value)
+ or np.isnan(tmm[build_nr])
or np.isnan(tmstd[build_nr])):
results.append(0.0)
- elif value < (tmm[build_nr] - 3 * tmstd[build_nr]):
+ elif value < (tmm[build_nr] - 2 * tmstd[build_nr]):
results.append(0.33)
- elif value > (tmm[build_nr] + 3 * tmstd[build_nr]):
+ elif value > (tmm[build_nr] + 2 * tmstd[build_nr]):
results.append(1.0)
else:
results.append(0.66)
@@ -187,10 +187,10 @@ def _evaluate_results(trimmed_data, window=10):
try:
tmm = np.median(trimmed_data)
tmstd = np.std(trimmed_data)
- if trimmed_data.values[-1] < (tmm - 3 * tmstd):
+ if trimmed_data.values[-1] < (tmm - 2 * tmstd):
results.append(0.33)
- elif (tmm - 3 * tmstd) <= trimmed_data.values[-1] <= (
- tmm + 3 * tmstd):
+ elif (tmm - 2 * tmstd) <= trimmed_data.values[-1] <= (
+ tmm + 2 * tmstd):
results.append(0.66)
else:
results.append(1.0)