1. mean() 函数定义:
numpy.mean(a, axis=None, dtype=None, out=None, keepdims=)[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
浅谈NumPy中的维度Axis
NumPy中的维度是一个很重要的概念,很多函数的参数都需要给定维度Axis,如何直观的理解维度呢?我们首先以二维数组为例进行说明,然后推广到多维数组。
(有人将ndim属性叫维度,将axis叫轴,我还是习惯将axis称之为维度,axis=0称为第一个维度)
二维数组的列子
下面是一个二维数组的列子:
In [1]: import numpy as np
In [2]: x = np.random.randint(0, 9, (2, 3))
In [3]: x
O
Numpy中np.max(即np.amax)的用法
>>> import numpy as np
>>> help(np.max)
当遇到一个不认识的函数,我们就需要查看一下帮助文档
np.max与np.amax是同名函数
amax(a, axis=None, out=None, keepdims=, initial=, where=)
Return the maximum of an array or maximum along an axis.寻找矩