如何在 Matplotlib 中获取反向顺序累积直方图?
要获取 Matplotlib 中的反向顺序累积直方图,我们可以在 **hist()** 方法中使用 **cumulative = -1**。
- 设置图片大小并调整子图之间和周围的间距。
- 列出数据点。
- 使用 **data** and **cumulative = -1** 绘制直方图。
- 使用 **show()** 方法显示图片。
示例
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True data = [1, 2, 2, 3, 1, 4, 3, 0, 1, 3, 0] plt.hist(data, edgecolor='black', align="mid", cumulative=-1) plt.show()
输出
广告