summaryrefslogtreecommitdiffhomepage
path: root/misc/benchmarks
diff options
context:
space:
mode:
authorTyge Lovset <[email protected]>2023-06-08 06:55:42 +0200
committerTyge Lovset <[email protected]>2023-06-08 06:55:42 +0200
commitabd3b4372dee2291a81271f02588228279139960 (patch)
treeb60b14a94e2c7f676ffe152174e6ba237e731e20 /misc/benchmarks
parent2bac1dff09459ce55f6e6813af96f845a8c981a1 (diff)
downloadSTC-modified-abd3b4372dee2291a81271f02588228279139960.tar.gz
STC-modified-abd3b4372dee2291a81271f02588228279139960.zip
More small adjustments.
Diffstat (limited to 'misc/benchmarks')
-rw-r--r--misc/benchmarks/plotbench/plot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/benchmarks/plotbench/plot.py b/misc/benchmarks/plotbench/plot.py
index 0ba92264..e65631b7 100644
--- a/misc/benchmarks/plotbench/plot.py
+++ b/misc/benchmarks/plotbench/plot.py
@@ -12,8 +12,8 @@ df = df[df.Method != 'total']
if n > 0:
df = df[df.Compiler == comp[n]]
-g = sns.catplot(data=df, x='Method', y='Seconds', hue='Library', col='C', kind='bar',
- ci=68, legend=False, col_wrap=2, sharex=False, aspect=1.4, height=3.1)
+g = sns.catplot(data=df, x='Method', y='Seconds', hue='Library', col='C', kind='bar', orient='v',
+ errorbar=('ci', 68), legend=False, col_wrap=2, sharex=False, aspect=1.4, height=3.1)
g.set_xlabels('')
g.add_legend(bbox_to_anchor=(0.75, 0.2), borderaxespad=0.)