Create conditions on a selection of columns
Helpers to apply a filter across a selection of columns.
if_all.(.cols = everything(), .fns = NULL, ...) if_any.(.cols = everything(), .fns = NULL, ...)
.cols |
Selection of columns |
.fns |
Function to create filter conditions |
... |
Other arguments passed to the function |
iris %>% filter.(if_any.(ends_with("Width"), ~ .x > 4)) iris %>% filter.(if_all.(ends_with("Width"), ~ .x > 2))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.