Learn R Programming

polmineR (version 0.8.9)

terms: Get terms in partition or corpus.

Description

Get terms in partition or corpus.

Usage

# S4 method for partition
terms(x, p_attribute, regex = NULL)

# S4 method for subcorpus terms(x, p_attribute, regex = NULL)

# S4 method for corpus terms(x, p_attribute, regex = NULL, robust = FALSE)

# S4 method for character terms(x, p_attribute, regex = NULL, robust = FALSE)

Arguments

x

A corpus, partition or subcorpus object, or a length-one character with a corpus id.

p_attribute

The p-attribute to for which to retrieve results (length-one character vector).

regex

Regular expression(s) to filter results (character vector).

robust

A logical value, whether to check for potential failures.

Examples

Run this code
use(pkg = "RcppCWB", corpus = "REUTERS")

r <- partition("REUTERS", id = "144")
words <- terms(r, "word")
terms(r, p_attribute = "word", regex = ".*il.*")

Run the code above in your browser using DataLab