Having real trouble finding answers to I hope simple question. I have two columns which a temperatures with decimal places 34.67777
and 56.53637
for example.
I just want to extract the rows where rowA value is higher than 35 and where row b value is lower than 50, for example.
I've tried formating my column data with .istype(float)
And then creating a range()
where I can try to check the values using isin
. But then the range won't deal with float values.
So pretty unsure what to do or how to go about checking