jupyter notebook如何求平均值
时间: 2023-08-30 09:11:13 浏览: 344
基于Jupyter Notebook 的机器学习基本模型算法介绍(附加案例)
5星 · 资源好评率100%
可以使用numpy库中的mean函数来求平均值。
示例代码:
```python
import numpy as np
# 创建一个数组
arr = np.array([1, 2, 3, 4, 5])
# 求平均值
mean_value = np.mean(arr)
print("平均值为:", mean_value)
```
输出结果:
```
平均值为: 3.0
```
阅读全文