Learn R Programming

qdap (version 2.2.4)

add_s: Make Plural (or Verb to Singular) Versions of Words

Description

Add -s, -es, or -ies to words.

Usage

add_s(x, keep.original = TRUE)

Arguments

x
A vector of words to make plural.
keep.original
logical. If TRUE the original words are kept in the return vector.

Value

  • Returns a vector of plural words.

Examples

Run this code
set.seed(10)
add_s(sample(GradyAugmented, 10))
set.seed(10)
add_s(sample(GradyAugmented, 10), FALSE)

Run the code above in your browser using DataLab