| print.net_hon | R Documentation |
Print Method for net_hon
## S3 method for class 'net_hon'
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"))
hon <- build_hon(seqs, max_order = 2)
print(hon)
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)
print(hon)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.