Skip to content

Commit

Permalink
🩹 Make t-values always positive
Browse files Browse the repository at this point in the history
  • Loading branch information
s-weigand committed Jul 9, 2023
1 parent 8c81edb commit f638b76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glotaran/parameter/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ def param_dict_to_markdown(
parameter.label_short,
parameter.value,
parameter.standard_error,
repr(pretty_format_numerical(parameter.value / parameter.standard_error)),
repr(pretty_format_numerical(abs(parameter.value / parameter.standard_error))),
parameter.minimum,
parameter.maximum,
parameter.vary,
Expand Down

0 comments on commit f638b76

Please sign in to comment.