featnames: Get the feature labels from a dfm

Description Usage Arguments Value Examples

View source: R/dfm-methods.R

Description

Get the features from a document-feature matrix, which are stored as the column names of the dfm object.

Usage

1

Arguments

x

the dfm whose features will be extracted

Value

character vector of the feature labels

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
dfmat <- dfm(data_corpus_inaugural)

# first 50 features (in original text order)
head(featnames(dfmat), 50)

# first 50 features alphabetically
head(sort(featnames(dfmat)), 50)

# contrast with descending total frequency order from topfeatures()
names(topfeatures(dfmat, 50))

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