| summary.net_reliability | R Documentation |
Summary Method for net_reliability
## S3 method for class 'net_reliability'
summary(object, ...)
object |
A |
... |
Ignored. |
A tidy data frame with columns model, metric,
mean, sd summarising the split-half iterations.
net <- build_network(data.frame(V1 = c("A","B","C","A"),
V2 = c("B","C","A","B")), method = "relative")
rel <- network_reliability(net, iter = 10)
seqs <- data.frame(
V1 = sample(LETTERS[1:4], 30, TRUE), V2 = sample(LETTERS[1:4], 30, TRUE),
V3 = sample(LETTERS[1:4], 30, TRUE), V4 = sample(LETTERS[1:4], 30, TRUE)
)
net <- build_network(seqs, method = "relative")
rel <- network_reliability(net, iter = 100, seed = 42)
print(rel)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.