答案 0 :(得分:3)
使用plt.hist()
,您需要使用参数histtype="stepfilled"
创建直方图并设置补丁的edgecolor
,默认情况下将其设置为None,以获取直方图您想要的方式:
import numpy as np
import matplotlib.pyplot as plt
data = np.random.randn(10000)
plt.hist(data, histtype="stepfilled", edgecolor='k', linewidth=1.2)