I'm new to numpy and having trouble trying to filter a subset of a sample.
I've got a matrix with the shape (1000, 12). That is, a thousand samples, with 12 data columns in each. I'm willing to create two matrices, one with all the outliers in the sample, and the other with all the elements which are not outliers; The resulting matrices should have this shape:
norm.shape = (883, 12)
outliers.shape = (117, 12)
To identify an outlier, I'm using this condition:
cond_out = (dados[0:,RD_EVAL] > _max_rd) | (dados[0:,DUT_EVAL] > _max_dut)
That is, for each line in the matrix, I'm looking for the values of two columns. If one of them is above a certain threshold, then the line is considered an outlier. The point is, this condition has a shape (1000,), so when I compress the original matrix, I get a (117,) result. How could I filter the matrix so the result would be (117,12), that is, a matrix with all the lines that are outliers, but with all the data columns in each of them?

