| print.net_mmm | R Documentation |
Compact summary of a Mixed Markov Model fit. Header carries dimensions
and information criteria; cluster table carries N, mixing share, and
per-cluster average posterior probability (AvePP). Layout matches
print.net_clustering so distance- and model-based
clusterings can be compared at a glance.
## S3 method for class 'net_mmm'
print(x, digits = 3L, ...)
x |
A |
digits |
Integer. Decimal places for floating-point statistics.
Default |
... |
Unsupported. Supplying unused arguments raises an error. |
The input object, invisibly.
seqs <- data.frame(V1 = sample(c("A","B","C"), 30, TRUE),
V2 = sample(c("A","B","C"), 30, TRUE))
mmm <- build_mmm(seqs, k = 2, n_starts = 1, max_iter = 10, seed = 1)
print(mmm)
set.seed(1)
seqs <- data.frame(
V1 = sample(c("A","B","C"), 30, TRUE),
V2 = sample(c("A","B","C"), 30, TRUE),
V3 = sample(c("A","B","C"), 30, TRUE)
)
mmm <- build_mmm(seqs, k = 2, n_starts = 5, seed = 1)
print(mmm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.