Learn R Programming

tidytable (version 0.10.2)

if_any.: Create conditions on a selection of columns

Description

Helpers to apply a filter across a selection of columns.

Usage

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

Arguments

.cols

Selection of columns

.fns

Function to create filter conditions

...

Other arguments passed to the function

Examples

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

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

Run the code above in your browser using DataLab