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