Numpy MaskedArray.compressed()函数– Python
numpy.MaskedArray.compressed()
函数将所有非屏蔽数据作为一维数组返回。
Syntax : numpy.MaskedArray.compressed(self)
Return : [ndarray] A new ndarray holding the non-masked data is returned.
代码#1:
# Python program explaining
# numpy.MaskedArray.compressed() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = geek.ma.array(geek.arange(10), mask =[0]*6 + [1]*4)
gfg = arr.compressed()
print(gfg)
输出 :
[0 1 2 3 4 5]
代码#2:
# Python program explaining
# numpy.MaskedArray.compressed() function
# importing numpy as geek
# and numpy.ma module as ma
import numpy as geek
import numpy.ma as ma
arr = geek.ma.array(geek.arange(7), mask =[0]*4 + [1]*3)
gfg = arr.compressed()
print(gfg)
输出 :
[0 1 2 3]