if_all: Create conditions on a selection of columns

View source: R/if_all-if_any.R

if_allR Documentation

Create conditions on a selection of columns

Description

Helpers to apply a filter across a selection of columns.

Usage

if_all(.cols = everything(), .fns = NULL, ...)

if_any(.cols = everything(), .fns = NULL, ...)

Arguments

.cols

Selection of columns

.fns

Function to create filter conditions

...

Other arguments passed to the function

Examples

iris %>%
  filter(if_any(ends_with("Width"), ~ .x > 4))

iris %>%
  filter(if_all(ends_with("Width"), ~ .x > 2))

mtfairbanks/gdt documentation built on April 12, 2024, 6:51 p.m.