diff options
| author | Chris Sobczak <chris@sobczak.family> | 2026-06-17 00:23:03 -0700 |
|---|---|---|
| committer | Chris Sobczak <chris@sobczak.family> | 2026-06-17 00:23:03 -0700 |
| commit | c9febb74dddab29b7e60488c91564796387f2785 (patch) | |
| tree | 389dc3744bec3568dd2621eb9ed75ede3efb4bee /man/heatmap.Rd | |
| parent | c9155f21e709ff2d2b84f132f2e8bdf62f0078b8 (diff) | |
Rename corplot to heatmap
Diffstat (limited to 'man/heatmap.Rd')
| -rw-r--r-- | man/heatmap.Rd | 26 |
1 files changed, 26 insertions, 0 deletions
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') + +} |
