If I want to convert an integer
or double
variables to character
variables,
how can I accomplish the task, I tried the below code, but I am certain this is an incorrect way.
storms %>% mutate_if(c(is.integer | is.double),
.funs = as.character)