python按列求均值
时间: 2023-12-30 17:24:49 浏览: 116
python计算一个序列的平均值的方法
以下是使用numpy库求解python中按列求均值的方法:
```python
import numpy as np
# 创建一个二维数组
arr = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
# 按列求均值
mean_col = np.mean(arr, axis=0)
print(mean_col)
```
输出结果为:
```
[4. 5. 6.]
```
阅读全文