tbl_remove_rows_less_than_or_equal_any: Remove rows with less than or equal "cutoff" in any numeric...

Description Usage Arguments Value Examples

Description

Remove rows with less than or equal 'cutoff' in any numeric column from a tbl.

Usage

1

Arguments

tbl

a tbl.

cutoff

numeric value to be used as 'cutoff'.

Value

a tbl.

Examples

1
2
3
4
5
## Not run: 
tbl <- tibble::tibble(x = letters[1:5] , y = LETTERS[1:5] , z = 1:5 , w = seq(1,10,by=2))
tbl %>% tbl_remove_rows_less_than_or_equal_any(cutoff =4)

## End(Not run)

cparsania/TidyWrappers documentation built on Feb. 6, 2022, 3:25 p.m.