For each token, compares its census first-name and last-name frequencies and flags it as a surname when it appears more often in the last-name position.
Value
A logical vector, one element per token, TRUE where the token is
more likely a surname than a given name.
Examples
check_if_surname(c("MICHAEL", "LIVINGSTON"))
#> [1] FALSE TRUE