I have four sets of random normal distributed numbers. The means are used to plot bar chart with each set\'s 95% confidence intervals plotted with errorbar.
Given a valu
Simply delete the line
ax.bar(df.index, avg, width=1, edgecolor='k', color='silver')
I don't know why you put it there, but it will plot a complete unicolor barchart on top of the colored bars and hide them.
%matplotlib inline
mode is set. Options you have:
%matplotlib notebook
in IPython Qt console or jupyter notebook.plt.show()
. In Spyder that can be ensured by running the script in a new dedicated window as sketched here.