pluralize | R Documentation |
A function to change words to their plural form. The rules for converting words to their plural forms are based on the grammar rules.
This function handles most special cases and some irregular cases (see examples) but caution is necessary. If no plural form is identified, then the original word is returned.
pluralize(word)
word |
A word |
Returns the word in singular form, unless a plural form could not be found (then the original word is returned)
Alexander Christensen <alexpaulchristensen@gmail.com>
# Handles any prototypical cases
"dogs"
pluralize("dog")
"foxes"
pluralize("fox")
"wolves"
pluralize("wolf")
"octopi"
pluralize("octopus")
"taxa"
pluralize("taxon")
# And most special cases:
"wives"
pluralize("wife")
"roofs"
pluralize("roof")
"photos"
pluralize("photo")
# And some irregular cases:
"children"
pluralize("child")
"teeth"
pluralize("tooth")
"mice"
pluralize("mouse")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.