1 回答
TA贡献1802条经验 获得超5个赞
考虑在 matplotlib 中具有多个直方图的图,如下所示:
#! /usr/bin/env python3
import matplotlib.pyplot as plt
import random
# Use the same seed for reproducibility.
random.seed(10586)
data1 = [random.gauss(1e-4, 3e-2) for _ in range(10**3)] + [0.3]
data2 = [random.gauss(1e-2, 3e-3) for _ in range(10**3)] + [0.4]
data3 = [0.2]
if __name__ == '__main__':
plt.xlim(xmin=0, xmax=0.8)
plt.yscale('log')
n1, bins1, patches1 = plt.hist(data1, bins='auto', alpha=0.6)
n2, bins2, patches2 = plt.hist(data2, bins='auto', alpha=0.6)
n3, bins3, patches3 = plt.hist(data3, bins='auto', alpha=0.6)
bin_options = ['auto', 'fd', 'doane', 'scott', 'rice', 'sturges', 'sqrt']
plt.show()
然而,第三个数据集只有一个数据点,所以当我们使用时,plt.hist(data3, bins='auto') 我们得到一个横跨 x 范围的长条,并且看不到它的值为 0.2:
或者histtype="stepfilled"
用来创建一个多边形,因为无论如何单个条形都无法与那么多垃圾箱区分开来,
n2, bins2, patches2 = plt.hist(data2, bins='auto', alpha=0.6, histtype="stepfilled")
后者还具有服从 alpha 的优点,否则由于条形的重叠而看不到它。此外,它应该更快地绘制单个形状而不是大约 1000 个条形图。
添加回答
举报