Given the following array:
x = np.array([[0,2,4,5,5.5,6,7],[4,5,6,7,2,3,4]])
Based on that array I need to create another array that skip the rows unit the value in the first column is >5.
So the result should like like this:
([[5.5,6,7],[2,3,4]])
Any hints for a simple (and fast) method for that problem? Thank you very much for your help!