Learn R Programming

quanteda (version 0.9.7-17)

settings: Get or set the corpus settings

Description

Get or set the corpus settings

Get or set various settings in the corpus for the treatment of texts, such as rules for stemming, stopwords, collocations, etc.

Get the settings from a which a dfm was created

Usage

settings(x, ...)
"settings"(x = NULL, ...)
"settings"(x, field = NULL, ...)
settings(x, field) <- value
"settings"(x, ...)
"print"(x, ...)

Arguments

x
object from/to which settings are queried or applied
...
additional arguments
field
string containing the name of the setting to be set or queried settings(x) query the corps settings

settings(x, field) <- update the corpus settings for field

value
new setting value

Details

Calling settings() with no arguments returns a list of system default settings.

Examples

Run this code
settings(inaugCorpus, "stopwords")
(tempdfm <- dfm(subset(inaugCorpus, Year>1980), verbose=FALSE))
(tempdfmSW <- dfm(subset(inaugCorpus, Year>1980),
                 ignoredFeatures=stopwords("english"), verbose=FALSE))
settings(inaugCorpus, "stopwords") <- TRUE
tempdfm <- dfm(inaugCorpus, stem=TRUE, verbose=FALSE)
settings(tempdfm)

Run the code above in your browser using DataLab