Keep rows with less than or equal 'cutoff' in all numeric columns from a tbl.

tbl_keep_rows_less_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_keep_rows_less_than_or_equal_all(cutoff =4) }