python 的numpy库中的mean()函数用法介绍


Posted in Python onMarch 03, 2020

1. mean() 函数定义:

numpy.mean(a, axis=None, dtype=None, out=None, keepdims=<class numpy._globals._NoValue at 0x40b6a26c>)[source]
Compute the arithmetic mean along the specified axis.

Returns the average of the array elements. The average is taken over the flattened array by default, otherwise over the specified axis. float64intermediate and return values are used for integer inputs.

Parameters: a : array_like Array containing numbers whose mean is desired. If a is not an array, a conversion is attempted. axis : None or int or tuple of ints, optional Axis or axes along which the means are computed. The default is to compute the mean of the flattened array. New in version 1.7.0. If this is a tuple of ints, a mean is performed over multiple axes, instead of a single axis or all the axes as before. dtype : data-type, optional Type to use in computing the mean. For integer inputs, the default is float64; for floating point inputs, it is the same as the input dtype. out : ndarray, optional Alternate output array in which to place the result. The default is None; if provided, it must have the same shape as the expected output, but the type will be cast if necessary. See doc.ufuncs for details. keepdims : bool, optional If this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the input array. If the default value is passed, then keepdims will not be passed through to the mean method of sub-classes of ndarray, however any non-default value will be. If the sub-classes sum method does not implement keepdims any exceptions will be raised.
Returns: m : ndarray, see dtype parameter above If out=None, returns a new array containing the mean values, otherwise a reference to the output array is returned.

2 mean()函数功能:求取均值

经常操作的参数为axis,以m * n矩阵举例:

axis 不设置值,对 m*n 个数求均值,返回一个实数

axis = 0:压缩行,对各列求均值,返回 1* n 矩阵

axis =1 :压缩列,对各行求均值,返回 m *1 矩阵

举例:

>>> 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) # 对所有元素求均值
3.5


>>> np.mean(now2,0) # 压缩行,对各列求均值
matrix([[ 2.5, 3.5, 4.5]])


>>> np.mean(now2,1) # 压缩列,对各行求均值
matrix([[ 2.],
  [ 3.],
  [ 4.],
  [ 5.]])

补充拓展:numpy的np.nanmax和np.max区别(坑)

numpy的np.nanmax和np.array([1,2,3,np.nan]).max()的区别(坑)

numpy中numpy.nanmax的官方文档

原理

在计算dataframe最大值时,最先用到的一定是Series对象的max()方法(),最终结果是4。

s1 = pd.Series([1,2,3,4,np.nan])
s1_max = s1.max()

但是笔者由于数据量巨大,列数较多,于是为了加快计算速度,采用numpy进行最大值的计算,但正如以下代码,最终结果得到的是nan,而非4。发现,采用这种方式计算最大值,nan也会包含进去,并最终结果为nan。

s1 = pd.Series([1,2,3,4,np.nan])
s1_max = s1.values.max()
>>>nan

通过阅读numpy的文档发现,存在np.nanmax的函数,可以将np.nan排除进行最大值的计算,并得到想要的正确结果。

当然不止是max,min 、std、mean 均会存在列中含有np.nan时,s1.values.min /std/mean ()返回nan的情况。

速度区别

速度由快到慢依次:

s1 = pd.Series([1,2,3,4,5,np.nan])
#速度由快至慢
np.nanmax(s1.values) > np.nanmax(s1) > s1.max()

以上这篇python 的numpy库中的mean()函数用法介绍就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python中if __name__ == '__main__'作用解析
Jun 29 Python
python如何实现远程控制电脑(结合微信)
Dec 21 Python
对比Python中__getattr__和 __getattribute__获取属性的用法
Jun 21 Python
Python对文件和目录进行操作的方法(file对象/os/os.path/shutil 模块)
May 08 Python
Python编程实现使用线性回归预测数据
Dec 07 Python
python+matplotlib演示电偶极子实例代码
Jan 12 Python
python 通过xml获取测试节点和属性的实例
Mar 31 Python
Python中pandas dataframe删除一行或一列:drop函数详解
Jul 03 Python
Python实现大数据收集至excel的思路详解
Jan 03 Python
基于Tensorflow批量数据的输入实现方式
Feb 05 Python
Django 博客实现简单的全文搜索的示例代码
Feb 17 Python
Python字符串的15个基本操作(小结)
Feb 03 Python
Python统计学一数据的概括性度量详解
Mar 03 #Python
python多维数组分位数的求取方式
Mar 03 #Python
浅谈pandas.cut与pandas.qcut的使用方法及区别
Mar 03 #Python
python Plotly绘图工具的简单使用
Mar 03 #Python
python 函数嵌套及多函数共同运行知识点讲解
Mar 03 #Python
python实现扫雷游戏
Mar 03 #Python
python实现从ftp服务器下载文件
Mar 03 #Python
You might like
用PHP 4.2书写安全的脚本
2006/10/09 PHP
easyui的tabs update正确用法分享
2014/03/21 PHP
PHP Callable强制指定回调类型的方法
2016/08/30 PHP
Yii针对添加行的增删改查操作示例
2016/10/18 PHP
浅谈PHP中关于foreach使用引用变量的坑
2016/11/14 PHP
PDO::inTransaction讲解
2019/01/28 PHP
PHP7内核CGI与FastCGI详解
2019/04/14 PHP
Laravel框架验证码类用法实例分析
2019/09/11 PHP
Js callBack 返回前一页的js方法
2008/11/30 Javascript
JavaScript正则表达式中的ignoreCase属性使用详解
2015/06/16 Javascript
浅谈Sticky组件的改进实现
2016/03/22 Javascript
深入理解jquery自定义动画animate()
2016/05/24 Javascript
基于jQuery实现仿微博发布框字数提示
2016/07/27 Javascript
nodeJs内存泄漏问题详解
2016/09/05 NodeJs
浅谈jQuery中的eq()与DOM中element.[]的区别
2016/10/28 Javascript
小程序如何获取多个formId实现详解
2019/09/20 Javascript
JS实现关闭小广告特效
2021/01/29 Javascript
Python学习笔记_数据排序方法
2014/05/22 Python
Python NumPy库安装使用笔记
2015/05/18 Python
python字典多键值及重复键值的使用方法(详解)
2016/10/31 Python
python机器学习之随机森林(七)
2018/03/26 Python
Python requests模块实例用法
2019/02/11 Python
33个Python爬虫项目实战(推荐)
2019/07/08 Python
python 函数的缺省参数使用注意事项分析
2019/09/17 Python
python飞机大战pygame游戏之敌机出场实现方法详解
2019/12/17 Python
Python基于yaml文件配置logging日志过程解析
2020/06/23 Python
CSS3系列教程:背景图片(背景大小和多背景图) 应用说明
2012/12/19 HTML / CSS
HTML5实现应用程序缓存(Application Cache)
2020/06/16 HTML / CSS
西班牙创意礼品和小工具网上商店:Curiosite
2016/07/26 全球购物
廉价航班、机票和酒店:JustFly
2018/02/07 全球购物
《桃林那间小木屋》教学反思
2014/05/01 职场文书
单位绩效考核方案
2014/05/11 职场文书
安全生产标语
2014/06/06 职场文书
产品委托授权书范本
2014/09/16 职场文书
中学生自我评价2015
2015/03/03 职场文书
创业计划书之餐饮
2019/09/02 职场文书