Description Usage Arguments Value See Also Examples
This function uses fuzzy string matching to replace one possibly misspeled (or in other way not fully correct) character string with a correct version of the same string.
1 | best_match(x, key, no_match = NA, all = FALSE)
|
x |
is a character string (or a character vector) that should be matched
to the |
key |
is a vector containging the correct spellings of the character strings. |
no_match |
Output value if there is no match. Default is NA. The input is returned unchanged if not matched and no_match = NULL. |
all |
is a boolean indicator to specify what happens if there is more than one match.
Default is |
The function returns a character vector of the same length as x
if all = FALSE
but with each element substituted to its best match in the key
-vector.
Strings that could not be matched are NA if (no_match = TRUE
) or unchanged if no_match = FALSE
.
If all = TRUE
, one input character string could result in more than one output character string. The output might therefore be longer
than the input.
clean_text
1 2 3 | best_match(c("Hej_apa!", "erik", "babian"), c("hej apa", "hej bepa", "kungen", "Erik"))
best_match(c("Hej_apa", "erik", "babian"),
c("hej apa", "hej bepa", "kungen", "Erik"), no_match = FALSE)
|
[1] NA "Erik" NA
Warning messages:
1: In best_match(c("Hej_apa!", "erik", "babian"), c("hej apa", "hej bepa", :
No match!
2: In best_match(c("Hej_apa!", "erik", "babian"), c("hej apa", "hej bepa", :
No match!
[1] "hej apa" "Erik" "FALSE"
Warning message:
In best_match(c("Hej_apa", "erik", "babian"), c("hej apa", "hej bepa", :
No match!
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.