terms {polmineR} | R 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 |
p_attribute |
The p-attribute to for which to retrieve results
(length-one |
regex |
Regular expression(s) to filter results ( |
robust |
A |
Examples
use(pkg = "RcppCWB", corpus = "REUTERS")
r <- partition("REUTERS", id = "144")
words <- terms(r, "word")
terms(r, p_attribute = "word", regex = ".*il.*")
[Package polmineR version 0.8.9 Index]