| print.mcml | R Documentation |
Print Method for mcml
## S3 method for class 'mcml'
print(x, ...)
x |
An |
... |
Additional arguments (ignored). |
The input object, invisibly.
seqs <- data.frame(V1 = c("A","B","C","A"), V2 = c("B","C","A","B"))
clusters <- list(G1 = c("A","B"), G2 = c("C"))
cs <- build_mcml(seqs, clusters)
print(cs)
seqs <- data.frame(
T1 = c("A","B","A"), T2 = c("B","C","B"),
T3 = c("C","A","C"), T4 = c("A","B","A")
)
clusters <- c("Alpha", "Beta", "Alpha")
cs <- build_mcml(seqs, clusters, type = "raw")
print(cs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.