terms: Get terms in 'partition' or 'corpus'.

termsR Documentation

Get terms in partition or corpus.

Description

Get terms in partition or corpus.

Usage

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

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

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

## S4 method for signature '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

use(pkg = "RcppCWB", corpus = "REUTERS")

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

PolMine/polmineR documentation built on Nov. 9, 2023, 8:07 a.m.