Remove rows with greater than or equal 'cutoff' in all numeric columns from a tbl.

tbl_remove_rows_greater_than_or_equal_all(tbl, cutoff)

Arguments

tbl

a tbl.

cutoff

numeric value to be used as 'cutoff'.

Value

a tbl.

Examples

if (FALSE) { 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) }