From ab28b8a45b83c9e0339c7ce7458c9aea8c00d1cb Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Thu, 8 Feb 2024 15:39:37 +0100 Subject: [PATCH] change stats to markdown format --- squiggle_more.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/squiggle_more.c b/squiggle_more.c index c49c2fc..7fe492d 100644 --- a/squiggle_more.c +++ b/squiggle_more.c @@ -214,16 +214,15 @@ void array_print_stats(double xs[], int n) double median = array_get_median(xs, n); double mean = array_mean(xs, n); double std = array_std(xs, n); - printf("Avg: %lf\n" - "Std: %lf\n" - " 5%%: %lf\n" - "10%%: %lf\n" - "25%%: %lf\n" - "50%%: %lf\n" - "75%%: %lf\n" - "90%%: %lf\n" - "95%%: %lf\n", - mean, std, ci_90.low, ci_80.low, ci_50.low, median, ci_50.high, ci_80.high, ci_90.high); + printf("| Statistic | Value |\n" + "| --- | --- |\n" + "| Mean | %lf |\n" + "| Median | %lf |\n" + "| Std | %lf |\n" + "| 90% confidence interval | %lf to %lf |\n" + "| 80% confidence interval | %lf to %lf |\n" + "| 50% confidence interval | %lf to %lf |\n" + mean, median, std, ci_90.low, ci_90.high, ci_80.low, ci_80.high, ci_50.low, ci_50.high); } void array_print_histogram(double* xs, int n_samples, int n_bins)