diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-11 12:15:01 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-11 12:15:01 +0100 |
commit | a5b0d06edfa3785fe26badda5f7419395d4a63af (patch) | |
tree | 79e0a7404960d5e7a4d94381f06cb4f4ac3a0bfb /lib | |
parent | a91a70e1d0f420a981b9e33fa11c424212a42b52 (diff) |
move --plot-param definition to cli.py
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cli.py | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -407,6 +407,15 @@ def add_standard_arguments(parser): "X axis is measurement number/id.", ) parser.add_argument( + "--plot-param", + metavar="<name>:<attribute>:<parameter>[;<name>:<attribute>:<parameter>;...])", + type=str, + help="Plot measurements for <name> <attribute> by <parameter>. " + "X axis is parameter value. " + "Plots the model function as one solid line for each combination of non-<parameter> parameters. " + "Also plots the corresponding measurements. ", + ) + parser.add_argument( "--boxplot-unparam", metavar="PREFIX", type=str, |