Skip to content

Commit af6ebe8

Browse files
committed
fix minor text interpretation cleanup
1 parent 6c9dd8f commit af6ebe8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

treeherder/perf/stats.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def interpret_cles(
286286
cles_explanation = interpret_cles_direction(cles)
287287

288288
# Cliff's delta CLES
289-
cliffs_delta_cles = f"**Cliff's Delta**: {delta:.2f}{interpretation}"
289+
cliffs_delta_cles = f"Cliff's Delta: {delta:.2f}{interpretation}"
290290

291291
# Mann-Whitney U p-value CLES
292292
p_value_cles = (
@@ -449,8 +449,8 @@ def plot_kde_with_isj_bandwidth(base, new, mann_pvalue, cles, delta, interpretat
449449

450450
# Summary text
451451
isj_kde_summary_text = [
452-
f"p-value: {mann_pvalue:.3f}\n",
453-
f"CLES: {cles:.2f}{'base > new' if cles >= 0.5 else 'new > base'}\n",
452+
f"p-value: {mann_pvalue:.3f}",
453+
f"CLES: {cles:.2f}{'base > new' if cles >= 0.5 else 'new > base'}",
454454
f"Cliff’s delta: {delta:.2f}{interpretation}",
455455
]
456456

0 commit comments

Comments
 (0)