diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-12 11:31:35 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-12 11:31:35 +0100 |
commit | 8eb5860bbf5af2ecbad05fd014b79d9f3a5489f6 (patch) | |
tree | 73e0f0db9a15e11d9f098ac31c45f9b6bf6159a7 /lib | |
parent | f77ac2e4422c3cc30aa6071167f10753e3ae2fb2 (diff) |
Move --force-tree definition to cli.py
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cli.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -566,6 +566,11 @@ def add_standard_arguments(parser): "ssr : Sum of Squared Residuals\n" "rsq : R² Score", ) + parser.add_argument( + "--force-tree", + action="store_true", + help="Build regression tree without checking whether static/analytic functions are sufficient.", + ) def parse_shift_function(param_name, param_shift): |