[U] Update report

This commit is contained in:
Hykilpikonna
2021-11-27 17:26:15 -05:00
parent e79c086f2e
commit 07f479e0d4
2 changed files with 7 additions and 17 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ def get_statistics(points: list[float]) -> Stats:
q75, q25 = np.percentile(points, [75, 25])
iqr = q75 - q25
return Stats(statistics.mean(points), statistics.stdev(points), statistics.median(points),
iqr, q75, q25)
iqr, q25, q75)
def tabulate_stats(stats: list[Stats], percent: bool = False) -> list[list[str]]: