我正在使用 pyplot 制作直方图。这大约是我正在做的事情:
import numpy as np
import pylab as pl
A = {my dataset as a dictionary: different numbers and their frequencies}
numbers = A.keys()
frequencies = A.values()
plot = np.transpose(np.array([[numbers,frequencies]])
n = <my bins-value here>
pl.hist(plot,bins=n,log=True)
pl.show()
我注意到,无论我指定多少个垃圾箱,第二个垃圾箱总是绿色的,如下所示。为什么是绿色的?这是什么意思?我该如何防止这种情况发生?