有五个演员,各个演员的身高分别为177、174、170、178、173,请用jupyter notebook画出其分布,并简要描述其特征和判断它是否近似于正态分布
时间: 2023-07-10 12:03:42 浏览: 127
height-vs-weight-exercise
以下是绘制身高分布图和对其特征的描述:
```python
import matplotlib.pyplot as plt
import numpy as np
heights = [177, 174, 170, 178, 173]
# 绘制直方图
plt.hist(heights, bins=5, alpha=0.5)
# 添加标题和标签
plt.title("Distribution of Heights")
plt.xlabel("Height (cm)")
plt.ylabel("Frequency")
plt.show()
```
![height_distribution.png](attachment:height_distribution.png)
从图中可以看出,这五位演员的身高分布大致呈现正态分布的趋势,但是样本量太小,无法做出准确的判断。此外,这个样本的均值为174.4,中位数为174,标准差为2.97,这也支持了近似正态分布的观点。
阅读全文