If I have a dataframe as following,
id price
01 10
02 5
03 0.1
04 100
05 1000
How could I get a new dataframe containing only price greater than $10 (including) and smaller than $100 (including) like this. Thanks.
id price
01 10
04 100