numpy.ma.masked_where#
- ma.masked_where(condition, a, copy=True)[source]#
在满足条件的地方掩盖数组。
返回一个数组 a,其中在 condition 为 True 的地方被掩盖。 a 或 condition 的任何掩盖值在输出中也会被掩盖。
- 参数:
- conditionarray_like
掩盖条件。当 condition 测试浮点值的相等性时,请考虑使用
masked_values
。- aarray_like
要掩盖的数组。
- copybool
如果为 True(默认值),则在结果中创建 a 的副本。如果为 False,则就地修改 a 并返回一个视图。
- 返回:
- resultMaskedArray
在 condition 为 True 的地方掩盖 a 的结果。
参见
masked_values
使用浮点相等性进行掩盖。
masked_equal
在等于给定值的地方掩盖。
masked_not_equal
在*不*等于给定值的地方掩盖。
masked_less_equal
在小于或等于给定值的地方掩盖。
masked_greater_equal
在大于或等于给定值的地方掩盖。
masked_less
在小于给定值的地方掩盖。
masked_greater
在大于给定值的地方掩盖。
masked_inside
在给定区间内掩盖。
masked_outside
在给定区间外掩盖。
masked_invalid
掩盖无效值(NaN 或 inf)。
示例
>>> import numpy as np >>> import numpy.ma as ma >>> a = np.arange(4) >>> a array([0, 1, 2, 3]) >>> ma.masked_where(a <= 2, a) masked_array(data=[--, --, --, 3], mask=[ True, True, True, False], fill_value=999999)
根据 a 掩盖数组 b。
>>> b = ['a', 'b', 'c', 'd'] >>> ma.masked_where(a == 2, b) masked_array(data=['a', 'b', --, 'd'], mask=[False, False, True, False], fill_value='N/A', dtype='<U1')
copy
参数的影响。>>> c = ma.masked_where(a <= 2, a) >>> c masked_array(data=[--, --, --, 3], mask=[ True, True, True, False], fill_value=999999) >>> c[0] = 99 >>> c masked_array(data=[99, --, --, 3], mask=[False, True, True, False], fill_value=999999) >>> a array([0, 1, 2, 3]) >>> c = ma.masked_where(a <= 2, a, copy=False) >>> c[0] = 99 >>> c masked_array(data=[99, --, --, 3], mask=[False, True, True, False], fill_value=999999) >>> a array([99, 1, 2, 3])
当 condition 或 a 包含掩码值时。
>>> a = np.arange(4) >>> a = ma.masked_where(a == 2, a) >>> a masked_array(data=[0, 1, --, 3], mask=[False, False, True, False], fill_value=999999) >>> b = np.arange(4) >>> b = ma.masked_where(b == 0, b) >>> b masked_array(data=[--, 1, 2, 3], mask=[ True, False, False, False], fill_value=999999) >>> ma.masked_where(a == 3, b) masked_array(data=[--, 1, --, --], mask=[ True, False, True, True], fill_value=999999)