where {poorman} | R Documentation |
Select variables with a function
Description
This selection helper selects the variables for which a function returns TRUE
.
Usage
where(fn)
Arguments
fn |
A function that returns |
Value
A vector of integer
column positions which are the result of the fn
evaluation.
See Also
Examples
iris %>% select(where(is.numeric))
iris %>% select(where(function(x) is.numeric(x)))
iris %>% select(where(function(x) is.numeric(x) && mean(x) > 3.5))
[Package poorman version 0.2.7 Index]