From 48fe2c177b746c4a4957f7aa6cbec1cb50cf22b4 Mon Sep 17 00:00:00 2001 From: Chris Sobczak Date: Fri, 12 Jun 2026 17:41:21 -0700 Subject: Create networkplot --- man/networkplot.Rd | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 man/networkplot.Rd (limited to 'man/networkplot.Rd') diff --git a/man/networkplot.Rd b/man/networkplot.Rd new file mode 100644 index 0000000..055bc46 --- /dev/null +++ b/man/networkplot.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/networkplot.R +\name{networkplot} +\alias{networkplot} +\title{Network Plot} +\usage{ +networkplot(R, title = NULL) +} +\arguments{ +\item{R}{A square numeric matrix with names columns and rows} + +\item{title}{Optional plot title} +} +\value{ +A ggraph object +} +\description{ +Draw an undirected graph from a square matrix +where each variable is a node and the pairwise +entries are the strength of the relationship +(ex: correlation, partial correlation) +} +\examples{ +X <- matrix(data = rnorm(100), nrow = 10) +R <- cor(X) +networkplot(R, title = 'Example Correlation Plot') + +} -- cgit v1.2.3