How do I check for a particular range for all columns in a dataframe. After finding the range I would like to return it in a new dataframe. There is the between function for series, but I'm looking for a way to check for a range for all columns. My dataframe is structured like this:
California Texas New York ...
200000 151000 900000
50000 160000 250000
75000 120000 171000
. . .
. . .
. . .
How can I return a dataframe with values in the range 150000-200000 for all columns?