Numpy: Filtering rows by multiple conditions?

∥☆過路亽.° 提交于 2019-11-30 20:40:57

you can use multiple filters in a slice, something like this:

x = np.arange(90.).reshape(30, 3)
#set the first 10 rows of cols 1,2 to be zero
x[0:10, 0:2] = 0.0
x[(x[:,0] == 0.) & (x[:,1] == 0.) & (x[:,2] > 10)]
#should give only a few rows
array([[  0.,   0.,  11.],
       [  0.,   0.,  14.],
       [  0.,   0.,  17.],
       [  0.,   0.,  20.],
       [  0.,   0.,  23.],
       [  0.,   0.,  26.],
       [  0.,   0.,  29.]])

How about this -

meta[meta[:,2]<X * np.all(meta[:,0:2]==0,1),:]

Sample run -

In [89]: meta
Out[89]: 
array([[ 1,  2,  3,  4],
       [ 0,  0,  2,  0],
       [ 9,  0, 11, 12]])

In [90]: X
Out[90]: 4

In [91]: meta[meta[:,2]<X * np.all(meta[:,0:2]==0,1),:]
Out[91]: array([[0, 0, 2, 0]])
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!