Skip to content

Commit ad4f084

Browse files
committed
Update stats.rs
1 parent 8645a25 commit ad4f084

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

safe/src/kits/stats.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,8 @@ impl Display for GuassianSet {
7575
(Some(mean), Some(std_dev), Some(std_err)) => {
7676
write!(
7777
f,
78-
// "mean: {:.6}, std dev: {:.6}, std err: {:.6}",
79-
// mean, std_dev, std_err
80-
"mean: {:.6}, std dev: {:.6}",
81-
mean, std_dev
78+
"mean: {:.6}, std dev: {:.6}, std err: {:.6}",
79+
mean, std_dev, std_err
8280
)
8381
}
8482
_ => write!(f, "Insufficient data to compute statistics."),

0 commit comments

Comments
 (0)