最佳答案
我目前正在使用 Matplotlib 创建一个直方图:
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as pyplot
...
fig = pyplot.figure()
ax = fig.add_subplot(1,1,1,)
n, bins, patches = ax.hist(measurements, bins=50, range=(graph_minimum, graph_maximum), histtype='bar')
#ax.set_xticklabels([n], rotation='vertical')
for patch in patches:
patch.set_facecolor('r')
pyplot.title('Spam and Ham')
pyplot.xlabel('Time (in seconds)')
pyplot.ylabel('Bits of Ham')
pyplot.savefig(output_filename)
我想让 X 轴的标签更有意义一点。
首先,这里的 x 轴滴答声似乎被限制在5次。无论我做什么,似乎都无法改变这一点——即使我添加更多 xticlabel,它也只使用前5个。我不确定 Matplotlib 是如何计算的,但我假设它是从范围/数据自动计算的?
有没有什么方法可以提高 x-tick 标签的分辨率 ——甚至可以达到每个条/箱一个的分辨率?
(理想情况下,我也希望秒被重新格式化为微秒/毫秒,但这是另一天的问题)。
其次,我希望 每个单独的酒吧标签-与实际数字在该垃圾箱,以及所有垃圾箱的百分比总数。
最终的输出可能是这样的:
Matplotlib 有这种可能吗?
干杯, 维克多