I got a dataframe and I want to drop all the rows that contain a value >= 100 in all the columns (in the whole dataframe), not in just one specific column. I tried : df = df[(df < 100).any()] df.drop(df[(df <= 100)].index, inplace=True)
But nothing work... Could you please help ?