View source: R/bootstrap_network.R
| summary.net_bootstrap | R Documentation |
Summary Method for net_bootstrap
## S3 method for class 'net_bootstrap'
summary(object, ...)
object |
A |
... |
Additional arguments (ignored). |
A data frame with edge-level bootstrap statistics.
net <- build_network(data.frame(V1 = c("A","B","C"), V2 = c("B","C","A")),
method = "relative")
boot <- bootstrap_network(net, iter = 10)
summary(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)
summary(boot)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.