Add y scale on the right side of plot
[lttng-ci.git] / scripts / system-tests / generate-plots.py
index d10a167f0166f29799f1164ccc55d2a9c93c8633..5bab68da4e744807538044fc3e10648c01550162 100644 (file)
@@ -130,7 +130,7 @@ def create_metadata_file(res_dir):
             continue
         list_.append(metadata)
 
-    df = pd.concat(list_)
+    df = pd.concat(list_, sort=True)
     df.index=df.build_id
     df.sort_index(inplace=True)
     df.to_csv('metadata.csv', index=False)
@@ -160,7 +160,7 @@ def create_plots(res_dir):
             tmp['testcase'] = res.split('.')[0]
             list_.append(tmp)
 
-        df = pd.concat(list_, sort=true)
+        df = pd.concat(list_, sort=True)
         df = convert_us_to_ns(df)
         df = rename_cols(df)
         df.sort_index(inplace=True)
This page took 0.022365 seconds and 4 git commands to generate.