VCorpus {tm} | R Documentation |
Volatile Corpora
Description
Create volatile corpora.
Usage
VCorpus(x, readerControl = list(reader = reader(x), language = "en"))
as.VCorpus(x)
Arguments
x |
For |
readerControl |
a named list of control parameters for reading in content
from
|
Details
A volatile corpus is fully kept in memory and thus all changes only affect the corresponding R object.
Value
An object inheriting from VCorpus
and Corpus
.
See Also
Corpus
for basic information on the corpus infrastructure
employed by package tm.
PCorpus
provides an implementation with permanent storage
semantics.
Examples
reut21578 <- system.file("texts", "crude", package = "tm")
VCorpus(DirSource(reut21578, mode = "binary"),
list(reader = readReut21578XMLasPlain))
[Package tm version 0.7-13 Index]