bio-data-visualization-heatmaps-clustering

Installation
SKILL.md

Heatmaps and Clustering

pheatmap (R) - Quick Heatmaps

library(pheatmap)
library(RColorBrewer)

# Basic heatmap with clustering
pheatmap(mat, scale = 'row', cluster_rows = TRUE, cluster_cols = TRUE)

# With annotations
annotation_col <- data.frame(
    Condition = metadata$condition,
    Batch = metadata$batch,
    row.names = colnames(mat)
)
Installs
4
GitHub Stars
1.1K
First Seen
Jan 24, 2026
bio-data-visualization-heatmaps-clustering — gptomics/bioskills