make_plural {textclean} | R Documentation |
Add -s, -es, or -ies to words.
make_plural(x, keep.original = FALSE,
irregular = lexicon::pos_df_irregular_nouns)
x |
A vector of words to make plural. |
keep.original |
logical. If |
irregular |
A |
Returns a vector of plural words.
x <- c('fox', 'sky', 'dog', 'church', 'fish', 'miss', 'match', 'deer', 'block')
make_plural(x)