Notebook
edata = np.random.exponential(size = n) fig, ax = plt.subplots() ax.hist(edata, **style) clean('longright')edata = np.random.exponential(size = n) fig, ax = plt.subplots() ax.hist(-edata + np.max(edata), **style) clean('longleft')
ax = axs[1] e = 10**-10 b = -e, 10+e, 20 + e, 30+e, 216.6 ax.hist(incomes, **sty, density = True, bins = b) ax = axs[2] e = 10**-10 b = -e, 10+e, 20 + e, 30+e, 215.5, 216.5 ax.hist(incomes, **sty, density = True, bins = b)