1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
\name{compare_heatmap}
\alias{compare_heatmap}
\title{
Compare heatmaps between stats::heatmap() and ComplexHeatmap::heatmap()
}
\description{
Compare heatmaps between stats::heatmap() and ComplexHeatmap::heatmap()
}
\usage{
compare_heatmap(...)
}
\arguments{
\item{...}{The same set of arguments passed to \code{stats::heatmap} and \code{ComplexHeatmap::heatmap}.}
}
\details{
The function plots two heatmaps, one by \code{stats::heatmap} and one by \code{ComplexHeatmap::heatmap}.
Users can see the difference between the two implementations.
}
\examples{
mat = matrix(rnorm(100), 10)
compare_heatmap(mat)
}
|