tbl_remove_rows_greater_than_or_equal_all: Remove rows with greater than or equal "cutoff" in all...

Description Usage Arguments Value Examples

Description

Remove rows with greater than or equal 'cutoff' in all numeric columns 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_greater_than_or_equal_all(cutoff =4)

## End(Not run)

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