在matplotlib中具有2个对数y标度的直方图?

时间:2013-04-22 13:04:34

标签: python matplotlib histogram

有没有办法做到这一点?当我尝试指定histbase时,basey命令似乎无法识别它。

1 个答案:

答案 0 :(得分:7)

注意:下面的解决方案适用于matplotlib版本< 1.3.1。


使用

ax.set_yscale('log', basey=2)

import numpy as np
import matplotlib.pyplot as plt
mu, sigma = 100, 15
fig, ax = plt.subplots()
x = mu + sigma * np.random.randn(10000)
ax.set_yscale('log', basey=2)
n, bins, histpatches = ax.hist(x, 50, facecolor='green', alpha=0.75)
plt.show()

enter image description here