mallet (version 1.3.0)

mallet.read.dir: Import documents from a directory into Mallet format

Description

This function takes a directory path as its only argument and returns a data.frame with two columns: <id> & <text>, which can be passed to the mallet.import function. This data.frame has as many rows as there are files in the Dir.

Usage

mallet.read.dir(Dir)

Value

a data.frame with file id and text content.

Arguments

Dir

The path to a directory containing one document per file.

Author

Dan Bowen

See Also

mallet.import

Examples

Run this code
if (FALSE) {
directory <- system.file("stoplists", package = "mallet")
stoplists <- mallet.read.dir(directory)
}

Run the code above in your browser using DataLab