concatenate {ngram} | R Documentation |
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
Examples
library(ngram)
words = c("a", "b", "c")
wordcount(words)
str = concatenate(words)
wordcount(str)
[Package ngram version 3.2.3 Index]