heatmap_cor: Heatmap plot of correlation matrix

View source: R/plot.R

heatmap_corR Documentation

Heatmap plot of correlation matrix

Description

Heatmap plot of correlation matrix

Usage

heatmap_cor(cor_heat, lim = 1)

Arguments

cor_heat

The coefficient matrix to draw heatmap

lim

the limit to truncate for large coefficients for better presentation

Value

a graph on the default plot window

Examples

cor_coef <- matrix(runif(100, -1, 1), ncol=10)
colnames(cor_coef) <- paste0("col", 1:10)
rownames(cor_coef) <- paste0("row", 1:10)
heatmap_cor(cor_coef)


argo documentation built on May 31, 2023, 8:21 p.m.

Related to heatmap_cor in argo...