| plot.net_reliability | R Documentation |
Density plots of split-half metrics faceted by metric type. Multi-model comparisons show overlaid densities colored by model.
## S3 method for class 'net_reliability'
plot(x, ...)
x |
A |
... |
Additional arguments (ignored). |
A ggplot object (invisibly).
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)
plot(rel)
set.seed(1)
seqs <- data.frame(
V1 = sample(c("A","B","C"), 30, TRUE),
V2 = sample(c("A","B","C"), 30, TRUE),
V3 = sample(c("A","B","C"), 30, TRUE)
)
net <- build_network(seqs, method = "relative")
rel <- network_reliability(net, iter = 20, seed = 1)
plot(rel)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.