print.CMDist: Print CMDist estimates

View source: R/CMDist.R

print.CMDistR Documentation

Print CMDist estimates

Description

Print CMDist estimates

Usage

## S3 method for class 'CMDist'
print(x, ...)

Arguments

x

CMDist object returned by CMDist()

...

Arguments to be passed to methods

Value

Invisibly returns x

See Also

CMDist, plot.CMDist

Examples

data(ft_wv_sample)
data(jfk_speech)
jfk_speech$sentence <- tolower(jfk_speech$sentence)
jfk_speech$sentence <- gsub("[[:punct:]]+", " ", jfk_speech$sentence)
dtm <- dtm_builder(jfk_speech, sentence, sentence_id)

out <- CMDist(dtm, cw = "space", wv = ft_wv_sample)
print(out)


text2map documentation built on Sept. 23, 2026, 5:07 p.m.