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