Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed May 27, 2022
1 parent a89bc27 commit 4d0f705
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion json_benchmarks/benchmarker/result_analysis.py
Expand Up @@ -795,7 +795,10 @@ def plot(self, xlabel, metric_key, group_labels):
if 'marker' not in plot_kws:
plot_kws['marker'] = "o"

# We will want to overwrite this with our own std estimate
plot_kws['ci'] = "sd"
# err_style='band',
# err_kws=None,

# Use a consistent pallete across plots
unique_hues = data['hue_key'].unique()
Expand All @@ -814,7 +817,9 @@ def plot(self, xlabel, metric_key, group_labels):
# fig.clf()

facet = sns.relplot(
data=group, kind='line',
data=group,
# kind='line',
kind='scatter',
facet_kws=facet_kws,
**plot_kws)

Expand Down

0 comments on commit 4d0f705

Please sign in to comment.