| print.net_mogen | R Documentation |
Print Method for net_mogen
## S3 method for class 'net_mogen'
print(x, ...)
x |
A |
... |
Additional arguments (ignored). |
The input object, invisibly.
seqs <- list(c("A","B","C","D"), c("A","B","C","A"), c("B","C","D","A"))
mg <- build_mogen(seqs, max_order = 2)
print(mg)
seqs <- data.frame(
V1 = c("A","B","C","A","B"),
V2 = c("B","C","A","B","C"),
V3 = c("C","A","B","C","A")
)
mog <- build_mogen(seqs, max_order = 2L)
print(mog)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.