I try to place the raw counts of my histogram above or on the chart, i am quite new to python and already googled 6 hours for this problem, but i cant seem to get my script working!
Do you have any idea what i can do?
fig = plt.figure(figsize=(15/2.54,15/2.54))
ax2 = fig.add_subplot(111)
ASETvsRSET_flat = ASETvsRSET.ravel()
ax2.hist(ASETvsRSET_flat[~np.isnan(ASETvsRSET_flat)], color='lightskyblue',\
bins=np.arange(rdiff_min,rdiff_max+1,1), edgecolor='k', normed=True )
ax2.set_xlabel(u'Räumungszeitdifferenz in min')
ax2.set_ylabel(r'p($\Delta_\mathrm{RDiff}$)')
ax2.axvline(0, ls='dashed', c='r')