Skip to content

Instantly share code, notes, and snippets.

@juanchiem
Created March 26, 2021 13:51
Show Gist options
  • Save juanchiem/3b2d54f6f2d4e47a842a7e1027745626 to your computer and use it in GitHub Desktop.
Save juanchiem/3b2d54f6f2d4e47a842a7e1027745626 to your computer and use it in GitHub Desktop.
starwars %>%
mutate(across(c("name", "sex"),
~stringi::stri_trans_general(
#pasar a mayusculas y sacar puntos
str_to_upper(gsub(',', '\\.',
# sacar espacios antes-desp
str_trim(
str_replace_all(., fixed(" "), "_")
))), "Latin-ASCII")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment