Python 官方文档:入门教程 => 点击学习
在python中使用mean函数的方法mean():mean函数中作用是求取均值。mean函数使用方法:import numpy as npnum1 = np.array([[1,2,3],[2,3,4],[3,4,5],[4,5,6]])
在python中使用mean函数的方法
mean():mean函数中作用是求取均值。
mean函数使用方法:
import numpy as np
num1 = np.array([[1,2,3],[2,3,4],[3,4,5],[4,5,6]])
now2 = np.mat(num1)
now2
matrix([[1, 2, 3],
[2, 3, 4],
[3, 4, 5],
[4, 5, 6]])
>>> np.mean(now2) # 对所有元素求均值
5
>>> np.mean(now2,0) # 压缩行,对各列求均值
matrix([[ 2.5, 3.5, 4.5]])
>>> np.mean(now2,1) # 压缩列,对各行求均值
matrix([[ 2.],
[ 3.],
[ 4.],
[ 5.]])
--结束END--
本文标题: python怎么引入mean函数
本文链接: https://lsjlt.com/news/113949.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0