format_sparsity: format a sparsity value for printing

View source: R/dfm-print.R

format_sparsityR Documentation

format a sparsity value for printing

Description

Inputs a dfm sparsity value from sparsity() and formats it for printing in print.dfm().

Usage

format_sparsity(x)

Arguments

x

input sparsity value, ranging from 0 to 1.0

Examples

ss <- c(1, .99999, .9999, .999, .99, .9,
       .1, .01, .001, .0001, .000001, .0000001, .00000001, .000000000001, 0)
for (s in ss) 
    cat(format(s, width = 10),  ":", quanteda:::format_sparsity(s), "\n")

quanteda documentation built on May 31, 2023, 8:28 p.m.