tokens_tolower: Convert the case of tokens

Description Usage Arguments Examples

View source: R/casechange-functions.R

Description

tokens_tolower() and tokens_toupper() convert the features of a tokens object and re-index the types.

Usage

1
2
3
tokens_tolower(x, keep_acronyms = FALSE)

tokens_toupper(x)

Arguments

x

the input object whose character/tokens/feature elements will be case-converted

keep_acronyms

logical; if TRUE, do not lowercase any all-uppercase words (applies only to *_tolower() functions)

Examples

1
2
3
4
# for a document-feature matrix
toks <- tokens(c(txt1 = "b A A", txt2 = "C C a b B"))
tokens_tolower(toks)
tokens_toupper(toks)

koheiw/quanteda.core documentation built on Sept. 21, 2020, 3:44 p.m.