function to remove accents f_remove_accent <- function(x){ x %>% str_replace_all("á", "a") %>% str_replace_all("é", "e") %>% str_replace_all("í", ...
確定! 回上一頁