Heyhey, I have the following dataframe:
df1:
col1 col2 col3 col4
0 31 53 82
1 23 73 32
2 35 34 12
3 36 13 24
4 23 93 36
I want to delete all rows, which have in col1 value 2 or smaler, so it looks like:
df1:
col1 col2 col3 col4
3 36 13 24
4 23 93 36
How can I do this? Thank you!