matplotlib 如何在直方图中绘制条之间的垂直线[重复]

ltqd579y  于 2023-06-23  发布在  其他
关注(0)|答案(1)|浏览(141)

此问题已在此处有答案

Plotting transparent histogram with non transparent edge(3个答案)
两年前关闭。
我目前正在尝试使用Python的matplotlib渲染直方图。我很难在每个箱子之间画垂直线。

这是我当前的代码

plt.figure(figsize=[10, 5])

array = np.random.normal(loc=0, scale=1, size=100)
plt.hist(array, bins=25, color='#0504AA', alpha=0.5)

plt.grid(axis='x', alpha=0.5)
plt.grid(axis='y', alpha=0.5)

plt.xlabel('Value',     fontsize=12.5)
plt.ylabel('Frequency', fontsize=12.5)

plt.xticks(fontsize=12.5)
plt.yticks(fontsize=12.5)

plt.title('Histogram Distribution', fontsize=12.5)
plt.show()

这里是当前输出

这里是所需的输出

czfnxgou

czfnxgou1#

试试这个:

plt.hist(array, bins=25, color='#0504AA', alpha=0.5,edgecolor ="black", linewidth=2)

https://i.stack.imgur.com/6qGpu.png

相关问题