python众数、中位数、平均数
时间: 2024-01-24 08:03:19 浏览: 79
求值_python_方差_中位数_平均值_
5星 · 资源好评率100%
以下是Python求众数、中位数和平均数的示例代码:
1. 平均数:
```python
import numpy as np
a = np.random.randint(0, 10, size=(20)) # 生成一个取值范围为0-10,大小为20的整数数组
average = np.mean(a) # 使用numpy库中的mean函数求平均数
print("平均数:", average)
```
2. 众数:
```python
from scipy import stats
a = np.random.randint(0, 10, size=(20)) # 生成一个取值范围为0-10,大小为20的整数数组
mode = stats.mode(a) # 使用scipy库中的mode函数求众数
print("众数:", mode.mode)
```
3. 中位数:
```python
a = np.random.randint(0, 10, size=(20)) # 生成一个取值范围为0-10,大小为20的整数数组
sorted_a = np.sort(a) # 对数组进行排序
if len(sorted_a) % 2 == 1:
median = sorted_a[int(len(sorted_a) / 2)] # 数组长度为奇数时,中位数为中间的元素
else:
median = (sorted_a[int(len(sorted_a) / 2)] + sorted_a[int(len(sorted_a) / 2) - 1]) / 2 # 数组长度为偶数时,中位数为中间两个元素的平均值
print("中位数:", median)
```
阅读全文