ngram (version 3.0.4)

concatenate: Concatenate

Description

A quick utility for concatenating strings together. This is handy because if you want to generate the n-grams for several different texts, you must first put them into a single string unless the text is composed of sentences that should not be joined.

Usage

concatenate(..., collapse = " ", rm.space = FALSE)

Arguments

...

Input text(s).

collapse

A character to separate the input strings if a vector of strings is supplied; otherwise this does nothing.

rm.space

logical; determines if spaces should be removed from the final string.

Value

A string.

See Also

preprocess

Examples

Run this code
# NOT RUN {
library(ngram)

words <- c("a", "b", "c")
wordcount(words)
str <- concatenate(words)
wordcount(str)

# }

Run the code above in your browser using DataLab