![]() |
Peano
|
Variables | |
list | Colours |
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 | |
plot-statistics.action |
Definition at line 48 of file plot-statistics.py.
plot-statistics.alpha |
Definition at line 116 of file plot-statistics.py.
plot-statistics.args = parser.parse_args() |
Definition at line 51 of file plot-statistics.py.
plot-statistics.choices |
Definition at line 37 of file plot-statistics.py.
plot-statistics.color |
Definition at line 115 of file plot-statistics.py.
list plot-statistics.colour = columns.index(column) % len(Colours) |
Definition at line 112 of file plot-statistics.py.
list plot-statistics.Colours |
Definition at line 9 of file plot-statistics.py.
Definition at line 53 of file plot-statistics.py.
plot-statistics.default |
Definition at line 49 of file plot-statistics.py.
plot-statistics.dest |
Definition at line 30 of file plot-statistics.py.
int plot-statistics.entries_per_row = 5 |
Definition at line 104 of file plot-statistics.py.
plot-statistics.help |
Definition at line 27 of file plot-statistics.py.
plot-statistics.input_file = open( args.file, "r" ) |
Definition at line 74 of file plot-statistics.py.
plot-statistics.label |
Definition at line 116 of file plot-statistics.py.
list plot-statistics.max_values = [] |
Definition at line 68 of file plot-statistics.py.
plot-statistics.metric = None |
Definition at line 75 of file plot-statistics.py.
list plot-statistics.min_values = [] |
Definition at line 67 of file plot-statistics.py.
plot-statistics.output_file = open( args.file + "-column-" + str(column) + ".csv", "w" ) |
Definition at line 101 of file plot-statistics.py.
plot-statistics.parser = argparse.ArgumentParser(description=) |
Definition at line 18 of file plot-statistics.py.
plot-statistics.required |
Definition at line 32 of file plot-statistics.py.
list plot-statistics.samples = [] |
Definition at line 69 of file plot-statistics.py.
plot-statistics.time_stamp = float(line.split( "," )[0]) |
Definition at line 81 of file plot-statistics.py.
plot-statistics.timestamps = [] |
Definition at line 65 of file plot-statistics.py.
plot-statistics.token = line.split( "," )[column].strip() |
Definition at line 82 of file plot-statistics.py.
plot-statistics.value = float( token.split("(")[1].split("/")[0]) |
Definition at line 85 of file plot-statistics.py.
plot-statistics.values = [] |
Definition at line 66 of file plot-statistics.py.