From 241ba19f68b5d1efb452281452064d32c2da580c Mon Sep 17 00:00:00 2001 From: Steve Skutnik Date: Sun, 17 Jul 2016 11:26:51 -0400 Subject: [PATCH] Minor adjustments to error bar rendering for factor plots. --- plot_UNF_benchmarks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plot_UNF_benchmarks.py b/plot_UNF_benchmarks.py index 3274e21..4671570 100644 --- a/plot_UNF_benchmarks.py +++ b/plot_UNF_benchmarks.py @@ -7,7 +7,6 @@ import itertools sns.set(style="ticks",font_scale=1.5) -sns.set_context(rc={'lines.markeredgewidth': 1.0, 'lines.markeredgecolor': 'k', 'lines.linecolor': 'k'}) IMAGE_DEST='./images/' TEX_DEST='./latex/' @@ -123,7 +122,8 @@ def plotIsosFP(df_iso, assemName, seriesInfo, filename, burnups={},plotAspect=1. mk.set_edgecolor('black') mk.set_linewidth(0.075) - g.map_dataframe(facetErrorBars,"IsoNum","C/E","Sigma",ebDict,data=df_iso, hue='Evaluation',zorder=0,elinewidth=1.5,markeredgecolor='k',ls='') + g.map_dataframe(facetErrorBars,"IsoNum","C/E","Sigma",ebDict,data=df_iso, hue='Evaluation', + markeredgecolor='k',ls='',elinewidth=1.5,capsize=8,zorder=0) g.set_xlabels('Isotope').set_titles("{col_name}") plt.legend(bbox_to_anchor=(1.1, 0.90), loc=2, borderaxespad=0., title="Evaluation")