I've got a 6000+ row dataframe and I'd like to drop all rows that have a value less than 2. My current attempt is: df=coal[coal['Value'] > 2] and the error is: unorderable types: str() > int()
I've attached a snapshot of my df, I want to drop the values that are small. I'm still rather new with python, so please bear with me.