Skip to content

Commit 9d84dd4

Browse files
Fix student t computation
1 parent 95c1308 commit 9d84dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/csv_to_md.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def get_emoji(t):
4040
assert(baseline_name == name)
4141
total_time_baseline = baseline_mean * (count_baseline // args.runs)
4242
total_time = mean * (count // args.runs)
43-
d, s, t = student(baseline_mean, baseline_stdev, args.runs, mean, stdev, args.runs)
43+
d, s, t = student(mean, stdev, count, baseline_mean, baseline_stdev, count_baseline)
4444
emoji = get_emoji(t)
4545
table.append([name, int(total_time), int(mean), f'{stdev:.2f}', count, int(total_time_baseline), int(baseline_mean), f'{baseline_stdev:.2f}', count_baseline, f'{d:.2f}', f'{s:.2f}', f'{t:.2f}', emoji])
4646

0 commit comments

Comments
 (0)