I'd like to add white 'breaks' to the bars of my histograms in matplotlib, so the grid lines appear to continue through the plot without being intrusive or busy in the background. I'd like to to look something like the following:
What I want - https://i.stack.imgur.com/rzbEz.jpg
Here is a test histogram to work with:
vals = np.random.randn(1000)
f = plt.figure(figsize=[4,4])
ax = f.add_subplot(111)
ax.hist(vals, bins=20, normed=True)