标签: python matplotlib statistics histogram
我的pyplot直方图有问题。当我将density设置为True时(我猜应该对其进行归一化),是否有可能密度超过1(实际上最大超过300!)?我想实现的是直方图和密度线,但在我看来密度不能超过300。请给我一些建议。
plt.hist(data1, density=True, bins='auto', color="lightblue", edgecolor="steelblue", linewidth=1)
Here is my histogram