Skip to content

Instantly share code, notes, and snippets.

@romainfrancois
Created October 9, 2018 10:42
Show Gist options
  • Save romainfrancois/9538e9e0cff39fa791ab1b8c2b0c6d8c to your computer and use it in GitHub Desktop.
Save romainfrancois/9538e9e0cff39fa791ab1b8c2b0c6d8c to your computer and use it in GitHub Desktop.
library(dplyr, warn.conflicts = FALSE)
iris %>%
mutate_at(vars(starts_with("S")), ~if(is.factor(.)) as.character(.) else .) %>%
as_tibble()
# https://git.io/fxnl5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment