DataframeSource {tm} | R Documentation |
Create a data frame source.
DataframeSource(x)
x |
A data frame giving the texts. |
A data frame source interprets each row of the data frame x
as a
document.
An object inheriting from DataframeSource
, SimpleSource
,
and Source
.
Source
for basic information on the source infrastructure
employed by package tm.
docs <- data.frame(c("This is a text.", "This another one.")) (ds <- DataframeSource(docs)) inspect(VCorpus(ds))