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

tbl_keep_rows_less_than_or_equal_any(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_any(cutoff =4) }