stemDocument {tm}R Documentation

Stem Words

Description

Stem words in a text document using Porter's stemming algorithm.

Usage

## S3 method for class 'PlainTextDocument'
stemDocument(x, language = Language(x))

Arguments

x

A text document.

language

A character setting the language to be used for stemming.

Details

The argument language is passed over to wordStem as the name of the Snowball stemmer.

Examples

data("crude")
crude[[1]]
stemDocument(crude[[1]])

[Package tm version 0.5-10 Index]