通过bin matplotlib标记直方图

时间:2017-07-21 02:58:17

标签: python matplotlib histogram bins

我有一个直方图,我想用箱子标记x轴。直方图被绘制为对数日志图,但是箱是非常具体的。图表:

The Graph

垃圾箱:

bins = [0, 0.035, 0.07, 0.15, 0.5, 1, 3, 10, 40]  

我有什么方法可以做到这一点?我相信它还需要摆脱目前的x轴标签。

1 个答案:

答案 0 :(得分:3)

我为你写了一个示例代码。基本上,你需要的只是' set_xticks'和' set_xticklabels'。

import numpy as np
import matplotlib.pyplot as plt

x = [0.01, 0.01, 0.01, 0.04, 0.1, 0.1, 0.4, 0.4, 0.4, 0.4, 0.65, 0.65, 0.65, 2, 7, 7, 7, 7, 7, 7, 7, 7, 18, 18, 18]
my_bins = [0.001, 0.035, 0.07, 0.15, 0.5, 1, 3, 10, 40]

ind = np.array(my_bins[:-1])
width = np.array([my_bins[i+1]-my_bins[i] for i in range(len(my_bins)-1)])

fig, ax = plt.subplots()

ax.hist(x, bins=my_bins)
ax.set_xscale('log')
ax.set_xticks(ind + width/2)
ax.set_xticklabels(('bin1', 'bin2', 'bin3', 'bin4', 'bin5', 'bin6', 'bin7', 'bin8'))

plt.show()