What do you think about adding the following function: ``` findcols(predicate, df::AbstractDataFrame) = findall(predicate, eachcol(df)) ``` Maybe such function would be more readable than using `predicate.(eachcol(df))` for column selection?
What do you think about adding the following function:
Maybe such function would be more readable than using
predicate.(eachcol(df))for column selection?