Replacing and removing
In the last exercise, you saw that the phone column of sfo_survey is plagued with unnecessary parentheses and hyphens. The customer support team has requested that all phone numbers be in the format "123 456 7890". In this exercise, you'll use your new stringr skills to fulfill this request.
dplyr and stringr are loaded and sfo_survey is available.
Cet exercice fait partie du cours
Cleaning Data in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Remove parentheses from phone column
phone_no_parens <- sfo_survey$phone %>%
# Remove "("s
___(fixed(___)) %>%
# Remove ")"s
___