diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-02 10:11:32 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-07-02 10:11:32 +0200 |
commit | cd605b040c6f9df695079d370fca345fb05dda36 (patch) | |
tree | b53dbd9a8fe42b8e56ce3326dd8434c82ecd433a /bin | |
parent | 62fdb7ee120fa0f9c8bf837cce546e2ae294fff7 (diff) |
ttest-ind: log entire result object
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ttest-ind.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ttest-ind.py b/bin/ttest-ind.py index c1859f0..ebed6af 100755 --- a/bin/ttest-ind.py +++ b/bin/ttest-ind.py @@ -14,7 +14,7 @@ def main(pvalue, file1, file2, macro=None): pvalue = float(pvalue) - print(f"% p = {result.pvalue}") + print(f"% {result}") if macro is None: print(r"\drefset{ttest/pvalue}{" + str(result.pvalue) + "}") if result.pvalue < pvalue: |