| print.net_honem | R Documentation |
Print Method for net_honem
## S3 method for class 'net_honem'
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"))
hem <- build_honem(build_hon(seqs, max_order = 2), dim = 2)
print(hem)
seqs <- data.frame(
V1 = c("A","B","C","A","B"),
V2 = c("B","C","A","B","C"),
V3 = c("C","A","B","C","A")
)
hon <- build_hon(seqs, max_order = 2L)
honem <- build_honem(hon, dim = 2L)
print(honem)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.