I want to use a boolean to select the columns with more than 4000 entries from a dataframe comb which has over 1,000 columns. This expression gives me a Boolean
comb
I'm using this, it's cleaner
comb.values[:,criteria]
credit: https://stackoverflow.com/a/43291257/815677