I have a variable called 'Biovolumes_vivo' type float64. I want to filter and remove the values higher than 8192.
I've done some research and I found something similar here: Pandas How to filter a Series
I modified the script according to my data:
Biovolumes_vivo = Biovolumes_vivo[Biovolumes_vivo !< 8192]
However, it says 'invalid syntax'.
I guees there is something wrong with '!<'. Thanks in advance for the help