fct_anon {forcats} | R Documentation |
Anonymise factor levels
Description
Replaces factor levels with arbitrary numeric identifiers. Neither the values nor the order of the levels are preserved.
Usage
fct_anon(f, prefix = "")
Arguments
f |
A factor. |
prefix |
A character prefix to insert in front of the random labels. |
Examples
gss_cat$relig %>% fct_count()
gss_cat$relig %>%
fct_anon() %>%
fct_count()
gss_cat$relig %>%
fct_anon("X") %>%
fct_count()
[Package forcats version 1.0.0 Index]