| print.mmm_compare | R Documentation |
Print Method for mmm_compare
## S3 method for class 'mmm_compare'
print(x, ...)
x |
An |
... |
Additional arguments (ignored). |
The input object, invisibly.
seqs <- data.frame(V1 = sample(c("A","B","C"), 30, TRUE),
V2 = sample(c("A","B","C"), 30, TRUE))
cmp <- compare_mmm(seqs, k = 2:3, n_starts = 1, max_iter = 10, seed = 1)
print(cmp)
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)
)
cmp <- compare_mmm(seqs, k = 2:3, n_starts = 5, seed = 1)
print(cmp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.