I want to remove the rows where Área is below 10 and above 1000.
So this works perfectly:
x = dataset[(dataset['Área'] > 10) ]
But this doesn't:
x = dataset[(dataset['Área'] > 10) and (dataset['Área'] < 1000)]
Please explain. I'm following this tutorial here.
Thank you.