|
@@ -17,7 +17,8 @@ def tprint(ls):
|
|
|
else:
|
|
else:
|
|
|
tmp.append(str(round(f)))
|
|
tmp.append(str(round(f)))
|
|
|
|
|
|
|
|
- print("\t|".join(tmp))
|
|
|
|
|
|
|
+ out = "\t|".join(tmp)
|
|
|
|
|
+ print("| " + out + " |")
|
|
|
|
|
|
|
|
def plot(process_data, title, filename):
|
|
def plot(process_data, title, filename):
|
|
|
fig, ax = plt.subplots(figsize=(10,5))
|
|
fig, ax = plt.subplots(figsize=(10,5))
|
|
@@ -55,7 +56,7 @@ def plot(process_data, title, filename):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- xtlbls = []
|
|
|
|
|
|
|
+ xtlbls = ["\\"]
|
|
|
for i in range(len(process_data)):
|
|
for i in range(len(process_data)):
|
|
|
lbl = task_output[i]["args"]
|
|
lbl = task_output[i]["args"]
|
|
|
if len(lbl) > 15:
|
|
if len(lbl) > 15:
|