forked from personal/squiggle.c
fix printf template string
This commit is contained in:
parent
ab28b8a45b
commit
df2a563e39
|
@ -216,13 +216,13 @@ void array_print_stats(double xs[], int n)
|
||||||
double std = array_std(xs, n);
|
double std = array_std(xs, n);
|
||||||
printf("| Statistic | Value |\n"
|
printf("| Statistic | Value |\n"
|
||||||
"| --- | --- |\n"
|
"| --- | --- |\n"
|
||||||
"| Mean | %lf |\n"
|
"| Mean | %lf |\n"
|
||||||
"| Median | %lf |\n"
|
"| Median | %lf |\n"
|
||||||
"| Std | %lf |\n"
|
"| Std | %lf |\n"
|
||||||
"| 90% confidence interval | %lf to %lf |\n"
|
"| 90%% confidence interval | %lf to %lf |\n"
|
||||||
"| 80% confidence interval | %lf to %lf |\n"
|
"| 80%% confidence interval | %lf to %lf |\n"
|
||||||
"| 50% 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);
|
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)
|
void array_print_histogram(double* xs, int n_samples, int n_bins)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user