如何在 Python 中规范化直方图?

pythonmatplotlibserver side programmingprogramming

要在 Python 中规范化直方图,我们可以使用 hist() 方法。在规范化的条形图中,图下方的面积应为 1。

步骤

  • 制作一个数字列表。

  • 使用 density=True绘制直方图。

  • 要显示图形,请使用 show() 方法。

示例

import matplotlib.pyplot as plt

plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

k = [5, 5, 5, 5]
x, bins, p = plt.hist(k, density=True)

plt.show()

输出


相关文章