View source: R/build_network.R
| print.netobject | R Documentation |
Print Method for Network Object
## S3 method for class 'netobject'
print(x, ...)
x |
A |
... |
Additional arguments (ignored). |
The input object, invisibly.
seqs <- data.frame(V1 = c("A","B","C","A"), V2 = c("B","C","A","B"))
net <- build_network(seqs, method = "relative")
print(net)
seqs <- data.frame(
V1 = c("A","B","A","C"), V2 = c("B","C","B","A"),
V3 = c("C","A","C","B")
)
net <- build_network(seqs, method = "relative")
print(net)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.