plt.hist的返回值是怎么计算的
时间: 2024-04-21 13:22:17 浏览: 41
关于python中plt.hist参数的使用详解
5星 · 资源好评率100%
plt.hist() 函数返回一个元组,其中包含三个值:
1. n:每个 bin 中的数据点数量。
2. bins:用于创建直方图的 bin 边界值的数组。
3. patches:表示每个 bin 的收集的 Rectangle 对象的列表。
可以通过解析返回的元组来获取这些值,例如:
```python
import matplotlib.pyplot as plt
data = [1, 2, 2, 3, 3, 3, 4, 4, 5]
n, bins, patches = plt.hist(data)
print("n:", n)
print("bins:", bins)
print("patches:", patches)
```
输出结果将是每个变量的值。
阅读全文