如何在 Python 中制作对数直方图?

pythonmatplotlibserver side programmingprogramming

要制作对数直方图,我们可以在  hist() 方法的参数中使用 log=True

步骤

  • 制作一个数字列表。

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

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

示例

import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
k = np.array([5, 5, 5, 5])
x, bins, p = plt.hist(np.log(k), density=True, log=True)
plt.show()

输出


相关文章