utils_remove_address_prefix {podcleaner} | R Documentation |
Clear undesired address prefixes
Description
Clear address entries in the provided directory dataframe of undesired prefixes such as "depot", "office", "store", "works" or "workshops".
Usage
utils_remove_address_prefix(directory, regex, ignore_case)
Arguments
directory |
A directory dataframe with an |
regex |
Regex character string to be use for matching. |
ignore_case |
Boolean specifying whether case should be ignored
( |
Value
A dataframe.
Examples
## Not run:
directory <- data.frame(
page = c("71", "71"),
surname = c("ABOT", "ABRCROMBIE"), forename = c("Wm.", "Alex"),
occupation = c("Wine and spirit merchant", "Baker"),
addresses = c(
"depot -; 1820 London st. ; house, Mary hill.*",
"workshop,,12 &;Dixon st.; residence, Craigrownie, Cove.$ "
),
stringsAsFactors = FALSE
)
regex <- globals_regex_address_prefix
utils_remove_address_prefix(directory, regex, TRUE)
## End(Not run)
[Package podcleaner version 0.1.2 Index]