% 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, labels = FALSE) } \arguments{ \item{R}{A square numeric correlation matrix} \item{title}{Optional plot title} \item{labels}{Logical to plot column names or not (default FALSE)} } \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') }