summaryrefslogtreecommitdiff
path: root/man/corplot.Rd
blob: a27d577eab20d7d26258930d38b3205bd7264ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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')

}