我想知道为什么这些垃圾箱没有显示出彼此之间的界限。看着它会让人感到困惑。我在下面附上了一个例子:
for key,value in dict.items():
plt.figure()
plt.hist( value, bins='auto')
plt.title("Histogram for THR")
plt.show()
答案 0 :(得分:1)
这是matplotlib 2.0的新默认样式(例如,请参阅documentation for plt.hist
in v2.0中的图表。)
要强制显示分档的边缘,您可以将edgecolor=
(或ec=
)参数传递给plt.hist
,例如对于黑色边框边缘plt.hist(values, bins='auto', ec='k')
。