From 617b79fb3e0707b9bd0b446db73a2b1d7f6f3f94 Mon Sep 17 00:00:00 2001 From: Chris Sobczak Date: Wed, 10 Jun 2026 15:58:27 -0700 Subject: Add corplot --- man/corplot.Rd | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 man/corplot.Rd (limited to 'man/corplot.Rd') diff --git a/man/corplot.Rd b/man/corplot.Rd new file mode 100644 index 0000000..72d4df0 --- /dev/null +++ b/man/corplot.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/corplot.R +\name{corplot} +\alias{corplot} +\title{Correlation PLot (Upper Triangle)} +\usage{ +corplot(R, title = NULL) +} +\arguments{ +\item{R}{A square numeric correlation matrix} + +\item{title}{Optional plot title} +} +\value{ +A ggplot object +} +\description{ +Minimal ggplot2 correlation plot showing the upper triangle +in the top-right corner with no axis labels. +} +\examples{ +X <- matrix(data = rnorm(100), nrow = 10) +R <- cor(X) +corplot(R, title = 'Example Correlation Plot') + +} -- cgit v1.2.3