1
0
mirror of https://github.com/beestat/app.git synced 2025-05-24 02:14:03 -04:00

Fixed #372 - Resist profile sometimes doesn't show up

This commit is contained in:
Jon Ziebell 2022-11-17 19:38:28 -05:00
parent dbaaf95a89
commit 690a51b450

View File

@ -90,7 +90,7 @@ function array_standard_deviation($array) {
$variance += pow(($i - $mean), 2);
}
return round(sqrt($variance / $count), 1);
return round(sqrt($variance / $count), 2);
}
/**