sparsity: Compute the sparsity of a document-feature matrix

View source: R/dfm-methods.R

sparsityR Documentation

Compute the sparsity of a document-feature matrix

Description

Return the proportion of sparseness of a document-feature matrix, equal to the proportion of cells that have zero counts.

Usage

sparsity(x)

Arguments

x

the document-feature matrix

Examples

dfmat <- dfm(tokens(data_corpus_inaugural))
sparsity(dfmat)
sparsity(dfm_trim(dfmat, min_termfreq = 5))

quanteda documentation built on May 29, 2024, 10 a.m.