Description Usage Arguments Value Examples
View source: R/replace_names.R
Replaces first/last names.
1 2 3 4 | replace_names(x, names = textclean::drop_element(gsub("(^.)(.*)",
"\\U\\1\\L\\2", c(lexicon::freq_last_names[[1]],
lexicon::common_names), perl = TRUE), "^([AIU]n|[TSD]o|H[ea]Pa|Oh)$"),
replacement = "", ...)
|
x |
The text variable. |
names |
A vector of names to replace. This may be made more custom through a vector provided from a named entity extractor. |
replacement |
A string to replace names with. |
... |
Other arguments passed to
|
Returns a vector with names replaced.
1 2 3 4 5 6 7 8 9 | x <- c(
"Mary Smith is not here",
"Karen is not a nice person",
"Will will do it",
NA
)
replace_names(x)
replace_names(x, replacement = '<<NAME>>')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.