diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-22 12:43:00 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-12-22 12:43:00 +0100 |
commit | b50976c1d2538a9ebd2e7496086a8df7cd9ddecd (patch) | |
tree | d8175aada6d96f594536495153cf95ca14268f37 /lib/cli.py | |
parent | 40f8d2466fff0bb122a38da9c0c98dc6769a1e1c (diff) |
add --plot-unparam support to analyze-kconfig; move definition to cli.py
Diffstat (limited to 'lib/cli.py')
-rw-r--r-- | lib/cli.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -342,6 +342,13 @@ def add_standard_arguments(parser): help="Limit precision of dataref export to NDIG decimals", ) parser.add_argument( + "--plot-unparam", + metavar="<name>:<attribute>:<Y axis label>[;<name>:<attribute>:<label>;...]", + type=str, + help="Plot all mesurements for <name> <attribute> without regard for parameter values. " + "X axis is measurement number/id.", + ) + parser.add_argument( "--boxplot-unparam", metavar="PREFIX", type=str, |