Learn R Programming

OpenRepGrid (version 0.1.9)

randomSentences: generate n random sentences with a given or random number of words

Description

generate n random sentences with a given or random number of words

Usage

randomSentences(n, nwords, maxchar = Inf)

Arguments

n
number of sentences to be generate (integer)
nwords
number of words per sentence. If vector each sentence lengths is randomly drawn from the vector
maxchar
maximal number of characters per sentence. Note that whole words (not part of words) are excluded if the maximal number is exceeded.

Value

a vector with n random sentences

Examples

Run this code
randomSentences(5, 10)     # five random sentences with ten words each
randomSentences(5, 2:10)   # five random sentences between two and ten words

Run the code above in your browser using DataLab