-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_time.py
32 lines (26 loc) · 936 Bytes
/
plot_time.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import matplotlib.pyplot as plt
import matplotlib
import pathlib
import pandas
def plot(input_file):
df = pandas.read_csv(input_file)
r = df.pivot(columns="pipeline", index="input", values="time")
get_name = lambda x: pathlib.Path(x).name.split(".")[0]
r.index = list(map(get_name, r.index))
r.columns.name = ""
methods = ["LEX","NN","ML"]
#matplotlib.rcParams.update({'font.size': 16})
#plt.style.use("dark_background")
r[methods].plot.bar()
plt.xticks(rotation=30)
plt.ylabel("Execution time [s]")
plt.show()
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(description=
"Plot the execution time of the heuristics given a benchmark result",
argument_default=argparse.SUPPRESS)
parser.add_argument("input", metavar="INPUT", type=str,
help="Benchmark results (CSV)")
args = parser.parse_args()
plot(args.input)