本文簡要介紹 python 語言中 numpy.ma.count
的用法。
用法:
ma.count(self, axis=None, keepdims=<no value>) = <numpy.ma.core._frommethod object>
沿給定軸計算數組的非屏蔽元素。
- axis: 無或int 或整數元組,可選
沿其執行計數的軸。默認值 None 對輸入數組的所有維度執行計數。軸可能是負數,在這種情況下,它從最後一個軸計數到第一個軸。
如果這是一個整數元組,則在多個軸上執行計數,而不是像以前那樣在單個軸或所有軸上執行計數。
- keepdims: 布爾型,可選
如果將其設置為 True,則縮小的軸將作為尺寸為 1 的尺寸留在結果中。使用此選項,結果將針對數組正確廣播。
- result: ndarray 或標量
與輸入數組具有相同形狀的數組,但已刪除指定的軸。如果數組是 0-d 數組,或者如果 axis 為 None,則返回一個標量。
參數:
返回:
例子:
>>> import numpy.ma as ma >>> a = ma.arange(6).reshape((2, 3)) >>> a[1, :] = ma.masked >>> a masked_array( data=[[0, 1, 2], [--, --, --]], mask=[[False, False, False], [ True, True, True]], fill_value=999999) >>> a.count() 3
當指定axis關鍵字時,將返回一個適當大小的數組。
>>> a.count(axis=0) array([1, 1, 1]) >>> a.count(axis=1) array([3, 0])
相關用法
- Python numpy ma.count_masked用法及代碼示例
- Python numpy ma.concatenate用法及代碼示例
- Python numpy ma.compress_rowcols用法及代碼示例
- Python numpy ma.common_fill_value用法及代碼示例
- Python numpy ma.conjugate用法及代碼示例
- Python numpy ma.column_stack用法及代碼示例
- Python numpy ma.copy用法及代碼示例
- Python numpy ma.cumsum用法及代碼示例
- Python numpy ma.choose用法及代碼示例
- Python numpy ma.clump_unmasked用法及代碼示例
- Python numpy ma.clip用法及代碼示例
- Python numpy ma.clump_masked用法及代碼示例
- Python numpy ma.indices用法及代碼示例
- Python numpy ma.zeros用法及代碼示例
- Python numpy ma.diff用法及代碼示例
- Python numpy ma.mask_rowcols用法及代碼示例
- Python numpy ma.where用法及代碼示例
- Python numpy ma.zeros_like用法及代碼示例
- Python numpy ma.notmasked_contiguous用法及代碼示例
- Python numpy ma.apply_along_axis用法及代碼示例
- Python numpy ma.vstack用法及代碼示例
- Python numpy ma.atleast_3d用法及代碼示例
- Python numpy ma.fix_invalid用法及代碼示例
- Python numpy ma.mean用法及代碼示例
- Python numpy ma.argmax用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.ma.count。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。