From b99e236b2cf7123294359ae2e1cd1737d8af79f9 Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Sat, 30 Aug 2025 11:28:47 -0600 Subject: [PATCH] update metrics script --- tests/logs/test_run_metrics3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/logs/test_run_metrics3.py b/tests/logs/test_run_metrics3.py index 0357516e8..7ec5ad9e7 100644 --- a/tests/logs/test_run_metrics3.py +++ b/tests/logs/test_run_metrics3.py @@ -521,7 +521,7 @@ def create_dashboard_table(test_tracking, average_scores, below_threshold_percen print(f"{'Comparison':<30} {'Cohen d':>14} {'t':>8} {'p':>10} {'Power':>10}") print(f"{'':<30} {'(rounded / exact)':>14}") for name, d, t_stat, p_val, power in comparisons: - d_str = f"{round(d, 1):.1f} / {d:.3f}" if not np.isnan(d) else "N/A" + d_str = f"{round(d, 2):.2f} / {d:.3f}" if not np.isnan(d) else "N/A" print(f"{name:<30} {d_str:>14} {t_stat:8.3f} {p_val:10.4f} {power:10.3f}") # Test breakdown by JSON files