打印出上面的hist和edges数组
时间: 2023-06-15 21:08:30 浏览: 61
hist1.rar_hist
由于没有给出具体的hist和edges数组,我这里举一个例子来打印:
```python
import numpy as np
# 生成一组随机数据
data = np.random.randn(1000)
# 计算直方图
hist, edges = np.histogram(data, bins=10)
# 打印直方图和边界数组
print(hist)
print(edges)
```
输出结果:
```
[ 4 25 94 201 283 214 133 39 5 2]
[-3.35892579 -2.68679605 -2.01466632 -1.34253658 -0.67040685 0.00172289
0.67385262 1.34598236 2.01811209 2.69024183 3.36237156]
```
其中,hist表示各个区间内的数据个数,edges表示各个区间的边界。
阅读全文