Entering edit mode
Hello Dear Biocondactors,
I would like to ask if there is a possibility to put row names in the density heatmap (Complexheatmap package). I want to show which density curve is indicating which gene. Simulated data and the codes are below. Thank you!
set.seed(22)
li.A <- matrix(rnorm(50), nrow = 10)
rownames(li.A) <- LETTERS[1:10]
colnames(li.A) <- paste0("S_", ncol = 1:5)
library(ComplexHeatmap)
densityHeatmap(li.A)