VectorSource
From tm v0.7-8
by Ingo Feinerer
Vector Source
Create a vector source.
Usage
VectorSource(x)
Arguments
- x
A vector giving the texts.
Details
A vector source interprets each element of the vector x
as a
document.
Value
An object inheriting from VectorSource
, SimpleSource
,
and Source
.
See Also
Source
for basic information on the source infrastructure
employed by package tm.
Examples
# NOT RUN {
docs <- c("This is a text.", "This another one.")
(vs <- VectorSource(docs))
inspect(VCorpus(vs))
# }
Community examples
Looks like there are no examples yet.