summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorChris Sobczak <chris@sobczak.family>2026-06-15 18:19:35 -0700
committerChris Sobczak <chris@sobczak.family>2026-06-15 18:19:35 -0700
commite5071ae6091eafc4a98bc280a23349dcb2261da3 (patch)
tree2a7bcc84687a6d82e064e76a63539c066324b23c /man
parentc22a8c7b71a54d3c604fef8ab68a10b50e3178cd (diff)
Add sizing and fix legend
Diffstat (limited to 'man')
-rw-r--r--man/networkplot.Rd12
1 files changed, 0 insertions, 12 deletions
diff --git a/man/networkplot.Rd b/man/networkplot.Rd
index c0a0a3e..12e5363 100644
--- a/man/networkplot.Rd
+++ b/man/networkplot.Rd
@@ -33,15 +33,3 @@ entries are the strength of the relationship
(ex: correlation, partial correlation).
Based on https://r-graph-gallery.com/310-custom-hierarchical-edge-bundling.html
}
-\examples{
-X <- matrix(data = rnorm(100), nrow = 10)
-R <- cor(X)
-networkplot(R, title = 'Example Correlation Plot')
-colnames(R) <- as.character(seq_len(ncol(R)))
-g <- data.frame(
-node = colnames(R),
-group = rep(c('A', 'B'), length.out = ncol(R))
-)
-networkplot(R, groups = g, title = 'Example Correlation Plot')
-
-}