numpy.ma.MaskedArray.count()函数计算沿给定轴的数组的非掩码元素。
用法: numpy.ma.MaskedArray.count(self, axis=None, keepdims = no value)
参数:
axis:[无或整数或整数元组,可选]沿其进行计数的轴。默认轴为“无”,对输入数组的所有维度执行计数。轴可能为负,在这种情况下,它从最后一个轴开始计数。
keepdims:[布尔,可选]如果将其设置为True,则缩小的轴将保留为尺寸为1的尺寸。使用此选项,结果将针对阵列正确广播。
Return :[ndarray或scalar]与输入数组具有相同形状的数组,但移除了指定的轴。如果数组是0维数组,或者轴为None,则返回标量。
代码1:
# Python program explaining
# numpy.ma.MaskedArray.count() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = ma.arange(6).reshape((2, 3))
arr[1,:] = ma.masked
gfg = arr.count(axis = 0)
print (gfg)
输出:
[1 1 1]
代码2:
# Python program explaining
# numpy.ma.MaskedArray.count() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = ma.arange(6).reshape((2, 3))
arr[1,:] = ma.masked
gfg = arr.count()
print (gfg)
输出:
3
相关用法
- Python Wand function()用法及代码示例
- Python map()用法及代码示例
- Python hex()用法及代码示例
- Python dir()用法及代码示例
- Python sum()用法及代码示例
- Python ord()用法及代码示例
- Python id()用法及代码示例
- Python now()用法及代码示例
- Python cmp()用法及代码示例
- Python int()用法及代码示例
- Python tell()用法及代码示例
- Python str()用法及代码示例
- Python oct()用法及代码示例
- Python property()用法及代码示例
- Python Wand fx()用法及代码示例
- Python math.cos()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 numpy.ma.MaskedArray.count() function – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。