|
Peano
|
Variables | |
| list | Colours |
| list | Markers |
| parser = argparse.ArgumentParser(description=) | |
| help | |
| dest | |
| required | |
| choices | |
| action | |
| default | |
| args = parser.parse_args() | |
| list | columns = [ int(x) for x in args.columns.split(",") ] |
| list | timestamps = [] |
| list | values = [] |
| list | min_values = [] |
| list | max_values = [] |
| list | samples = [] |
| input_file = open( args.file, "r" ) | |
| metric = None | |
| time_stamp = float(line.split( "," )[0]) | |
| token = line.split( "," )[column].strip() | |
| value = float( token.split("(")[1].split("/")[0]) | |
| output_file = open( args.file + "-column-" + str(column) + ".csv", "w" ) | |
| int | entries_per_row = 5 |
| list | colour = columns.index(column) % len(Colours) |
| color | |
| alpha | |
| label | |
| marker | |
| fontsize | |
| plot-statistics.action |
Definition at line 69 of file plot-statistics.py.
| plot-statistics.alpha |
Definition at line 151 of file plot-statistics.py.
| plot-statistics.args = parser.parse_args() |
Definition at line 78 of file plot-statistics.py.
| plot-statistics.choices |
Definition at line 58 of file plot-statistics.py.
| plot-statistics.color |
Definition at line 150 of file plot-statistics.py.
| list plot-statistics.colour = columns.index(column) % len(Colours) |
Definition at line 147 of file plot-statistics.py.
| list plot-statistics.Colours |
Definition at line 9 of file plot-statistics.py.
| list plot-statistics.columns = [ int(x) for x in args.columns.split(",") ] |
Definition at line 80 of file plot-statistics.py.
| plot-statistics.default |
Definition at line 70 of file plot-statistics.py.
| plot-statistics.dest |
Definition at line 51 of file plot-statistics.py.
| int plot-statistics.entries_per_row = 5 |
Definition at line 139 of file plot-statistics.py.
| plot-statistics.fontsize |
Definition at line 160 of file plot-statistics.py.
| plot-statistics.help |
Definition at line 48 of file plot-statistics.py.
| plot-statistics.input_file = open( args.file, "r" ) |
Definition at line 102 of file plot-statistics.py.
| plot-statistics.label |
Definition at line 151 of file plot-statistics.py.
| plot-statistics.marker |
Definition at line 158 of file plot-statistics.py.
| list plot-statistics.Markers |
Definition at line 17 of file plot-statistics.py.
| list plot-statistics.max_values = [] |
Definition at line 96 of file plot-statistics.py.
| plot-statistics.metric = None |
Definition at line 103 of file plot-statistics.py.
| list plot-statistics.min_values = [] |
Definition at line 95 of file plot-statistics.py.
| plot-statistics.output_file = open( args.file + "-column-" + str(column) + ".csv", "w" ) |
Definition at line 136 of file plot-statistics.py.
| plot-statistics.parser = argparse.ArgumentParser(description=) |
Definition at line 39 of file plot-statistics.py.
| plot-statistics.required |
Definition at line 53 of file plot-statistics.py.
| list plot-statistics.samples = [] |
Definition at line 97 of file plot-statistics.py.
| plot-statistics.time_stamp = float(line.split( "," )[0]) |
Definition at line 112 of file plot-statistics.py.
| plot-statistics.timestamps = [] |
Definition at line 93 of file plot-statistics.py.
| plot-statistics.token = line.split( "," )[column].strip() |
Definition at line 113 of file plot-statistics.py.
| plot-statistics.value = float( token.split("(")[1].split("/")[0]) |
Definition at line 118 of file plot-statistics.py.
| plot-statistics.values = [] |
Definition at line 94 of file plot-statistics.py.