Ok I've got a pretty basic problem I'm sure but I'm just too novice at R to fix it. I'm creating a heatmap using pheatmap and would like to display the raw numbers in each cell but also use scaling on the rows. The is issue is when I use display_numbers = nrow(theatmap_data) it only shows the transformed scaled number not the raw values.
Here's the snipet
library(pheatmap)
t(heatmap_data) -> theatmap_data
pheatmap((theatmap_data),cluster_rows= FALSE, cluster_cols = FALSE,
scale ="row", display_numbers = nrow(theatmap_data))