Add log-plot feature
Currently, the only way to create log-plots is by setting the scale manually.
fig, ax = hist(...)
ax.set_ylim((1, ax.get_ylim()[1]*100))
ax.set_yscale('log')
There should be an option to do this automatically, which also expands enlarges the axis to make room for the ATLAS labels.