此问题已在此处有答案:
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()
这里是当前输出
这里是所需的输出
1条答案
按热度按时间czfnxgou1#
试试这个:
https://i.stack.imgur.com/6qGpu.png