summaryrefslogtreecommitdiff
path: root/man/corplot.Rd
diff options
context:
space:
mode:
authorChris Sobczak <chris@sobczak.family>2026-06-17 00:23:03 -0700
committerChris Sobczak <chris@sobczak.family>2026-06-17 00:23:03 -0700
commitc9febb74dddab29b7e60488c91564796387f2785 (patch)
tree389dc3744bec3568dd2621eb9ed75ede3efb4bee /man/corplot.Rd
parentc9155f21e709ff2d2b84f132f2e8bdf62f0078b8 (diff)
Rename corplot to heatmap
Diffstat (limited to 'man/corplot.Rd')
-rw-r--r--man/corplot.Rd26
1 files changed, 0 insertions, 26 deletions
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')
-
-}