Skip to content

Commit

Permalink
Minor adjustments to error bar rendering for factor plots.
Browse files Browse the repository at this point in the history
  • Loading branch information
sskutnik committed Jul 17, 2016
1 parent b97c09b commit 241ba19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plot_UNF_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/'
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 241ba19

Please sign in to comment.