tm (version 0.5-10)

writeCorpus: Write a Corpus to Disk

Description

Write a plain text representation of a corpus to multiple files on disk corresponding to the individual documents in the corpus.

Usage

writeCorpus(x, path = ".", filenames = NULL)

Arguments

x
A corpus.
path
A character listing the directory to be written into.
filenames
Either NULL or a character vector. In case no filenames are provided, filenames are automatically generated by using the documents' ID strings in x.

Examples

Run this code
data("crude")
writeCorpus(crude, path = ".",
            filenames = paste(seq_along(crude), ".txt", sep = ""))

Run the code above in your browser using DataLab