Using tidyverse I would like to remove the special characters from "Education" column so that it would just say Masters or Bachelors. Since I'm using Tidyverse I would like to exemplify using piping and keeping the data frame as is:
library(tidyverse)
education <- data.frame(Education = c("Master’s ","Professional ","Bachelor’s"))
education <- sapply(education,str_replace(education,"’",""))