原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.ma.compress_rowcols.html
校对:(虚位以待)
numpy.ma.
compress_rowcols
(x, axis=None)[source]抑制包含屏蔽值的2-D数组的行和/或列。
抑制行为通过axis参数选择。
参数: | x:array_like,MaskedArray
axis:int,可选
|
---|---|
返回: | compressed_array:ndarray
|
例子
>>> x = np.ma.array(np.arange(9).reshape(3, 3), mask=[[1, 0, 0],
... [1, 0, 0],
... [0, 0, 0]])
>>> x
masked_array(data =
[[-- 1 2]
[-- 4 5]
[6 7 8]],
mask =
[[ True False False]
[ True False False]
[False False False]],
fill_value = 999999)
>>> np.ma.compress_rowcols(x)
array([[7, 8]])
>>> np.ma.compress_rowcols(x, 0)
array([[6, 7, 8]])
>>> np.ma.compress_rowcols(x, 1)
array([[1, 2],
[4, 5],
[7, 8]])