Skip to content

Commit da83969

Browse files
committed
fix
1 parent ae1a548 commit da83969

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pert.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ if [[ $total_estimate > 0 ]]; then
9595
_divider
9696
printf "$tpeformat" "confidence"
9797
_divider
98-
printf "$tpeformat" "1 Sigma - 68%" $(_calc "$total_estimate - $total_variance") $(_calc "$total_estimate + $total_variance")
99-
printf "$tpeformat" "2 Sigma - 95%" $(_calc "$total_estimate - 2 * $total_variance") $(_calc "$total_estimate + 2 * $total_variance")
100-
printf "$tpeformat" "3 Sigma - 99%" $(_calc "$total_estimate - 3 * $total_variance") $(_calc "$total_estimate + 3 * $total_variance")
98+
printf "$tpeformat" "1 Sigma - 68%" $(_calc "$total_estimate - $total_standard_deviation") $(_calc "$total_estimate + $total_standard_deviation")
99+
printf "$tpeformat" "2 Sigma - 95%" $(_calc "$total_estimate - 2 * $total_standard_deviation") $(_calc "$total_estimate + 2 * $total_standard_deviation")
100+
printf "$tpeformat" "3 Sigma - 99%" $(_calc "$total_estimate - 3 * $total_standard_deviation") $(_calc "$total_estimate + 3 * $total_standard_deviation")
101101
_divider
102102

103103
fi

0 commit comments

Comments
 (0)