aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/plots.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plots.py b/src/plots.py
index 0c6d4f9..8a73fa0 100644
--- a/src/plots.py
+++ b/src/plots.py
@@ -103,8 +103,8 @@ def plot_single_arg(bench, yval, ylabel="y-label", xlabel="x-label",
plt.savefig(figname)
plt.clf()
-def barplot_single_arg(bench, yval, ylabel="'y-label'", xlabel="'x-label'",
- title="'default title'", filepostfix="", sumdir="",
+def barplot_single_arg(bench, yval, ylabel="y-label", xlabel="x-label",
+ title="default title", filepostfix="", sumdir="",
arg="", scale=None, file_ext=src.globalvars.summary_file_ext, yerr=True):
"""plot bar plots for each permutation of the benchmark's command arguments"""
@@ -160,8 +160,8 @@ def barplot_single_arg(bench, yval, ylabel="'y-label'", xlabel="'x-label'",
plt.savefig(figname)
plt.clf()
-def plot_fixed_arg(bench, yval, ylabel="'y-label'", xlabel="loose_arg",
- autoticks=True, title="'default title'", filepostfix="",
+def plot_fixed_arg(bench, yval, ylabel="y-label", xlabel="{loose_arg}",
+ autoticks=True, title="default title", filepostfix="",
sumdir="", fixed=None, file_ext=src.globalvars.summary_file_ext, scale=None):
args = bench.results["args"]