matplotlib stepfilled hist in y-log scale don't show correctly
问题 I have a problem displaying histograms in matplotlib when both options histtype='stepfilled' and log=True are used. I had this problem in matplotlib version 1.1.0 and found that this is still present in version 1.2.0. Unfortunately I don't have the rights to post images, but you can check out this behaviour with this simple code: import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt mu, sigma = 200, 25 x = mu + sigma*np.random.randn(10000) n, bins, patches = plt.hist(x,