Description Usage Arguments Value Examples
Replace numeric values less than or equal given ''cutoff'
from a tbl.
1 | tbl_replace_less_than_or_equal(tbl, cutoff, replace_by)
|
tbl |
a tbl. |
cutoff |
a numeric value to be used as a |
replace_by |
a numeric value to be used to replace less than or equal |
a tbl.
1 2 3 4 5 | ## Not run:
tbl <- tibble::tibble(x = letters[1:5] , y = LETTERS[1:5] , z = 1:5 , w = 5:1)
tbl %>% tbl_replace_less_than_or_equal(4, 0 )
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.