From c9febb74dddab29b7e60488c91564796387f2785 Mon Sep 17 00:00:00 2001 From: Chris Sobczak Date: Wed, 17 Jun 2026 00:23:03 -0700 Subject: Rename corplot to heatmap --- man/corplot.Rd | 26 -------------------------- man/figures/README-example-1.png | Bin 48834 -> 50206 bytes man/heatmap.Rd | 26 ++++++++++++++++++++++++++ 3 files changed, 26 insertions(+), 26 deletions(-) delete mode 100644 man/corplot.Rd create mode 100644 man/heatmap.Rd (limited to 'man') diff --git a/man/corplot.Rd b/man/corplot.Rd deleted file mode 100644 index a27d577..0000000 --- a/man/corplot.Rd +++ /dev/null @@ -1,26 +0,0 @@ -% 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') - -} diff --git a/man/figures/README-example-1.png b/man/figures/README-example-1.png index a5e59b1..a15dc43 100644 Binary files a/man/figures/README-example-1.png and b/man/figures/README-example-1.png differ diff --git a/man/heatmap.Rd b/man/heatmap.Rd new file mode 100644 index 0000000..51472de --- /dev/null +++ b/man/heatmap.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/heatmap.R +\name{heatmap} +\alias{heatmap} +\title{Heatmap Plot (Upper Triangle)} +\usage{ +heatmap(R, title = NULL) +} +\arguments{ +\item{R}{A square numeric correlation matrix} + +\item{title}{Optional plot title} +} +\value{ +A ggplot object +} +\description{ +Minimal ggplot2 relationship structure 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) +heatmap(R, title = 'Example Correlation Plot') + +} -- cgit v1.2.3