Using unique() and == to match accented vs. non-accented characters
Asked Answered
E

1

9

I'm putting together some tables that look almost the same, except that some characters appear accented in some and non-accented in others. For instance, "André" sometimes reads "Andre", "Flávio" and "Flavio", etc. I need to consider all variations as equal, but unique() considers them as different. I thought about changing all accented to non accented, and then using unique(), but I thought that maybe there is another, faster option.

Later I need to make the same accent-insensitive comparison using == so I'm thinking about removing all accents from a copy of each table, and do the comparison on the copies. Please tell me if there's a different, better approach.

Energid answered 12/8, 2015 at 18:42 Comment(3)
Your approach seems appropriate. Note iconv("André",to='ASCII//TRANSLIT') == "Andre"Jochbed
This looks much better than converting every different possible accent, @A.Webb. I'll accept that as an answer. Thank you!Energid
relevant (almost a duplicate, one answer with stringi::stri_trans_general) : #13610819Sugihara
J
6

The approach of removing accents prior to comparison seems appropriate for your purposes. Note that such a facility exists in iconv with the TRANSLIT flag

iconv(c("André","Flávio"),to='ASCII//TRANSLIT')
#> [1] "Andre"  "Flavio"
Jochbed answered 12/8, 2015 at 19:11 Comment(1)
Yes, I made a function that makes this and converts to uppercase at the same time: ICONV <- function(x) { return(iconv(toupper(x),to='ASCII//TRANSLIT')) } Thank you!Energid

© 2022 - 2024 — McMap. All rights reserved.