make_plural {textclean} | R Documentation |
Make Plural (or Verb to Singular) Versions of Words
Description
Add -s, -es, or -ies to words.
Usage
make_plural(x, keep.original = FALSE,
irregular = lexicon::pos_df_irregular_nouns)
Arguments
x |
A vector of words to make plural. |
keep.original |
logical. If |
irregular |
A |
Value
Returns a vector of plural words.
Examples
x <- c('fox', 'sky', 'dog', 'church', 'fish', 'miss', 'match', 'deer', 'block')
make_plural(x)
[Package textclean version 0.9.3 Index]