I have a large file of data with the following structure:
data = {{700., 0.1, 0.2, 0.3}, {800., 10., 30., 40.}, {900., 0.1, 1.4,
15.}};
What I would like is to clean the data, eliminating rows whose maximum value from the 2nd column onwards is less than 1.
In the simplified example I have used before, only the 1st row should be deleted.
Does anyone know how can this be done using Mathematica?
Thanks in advance for any help!