Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1 [在此处输入图像描述] 2
我正在尝试使用 pheatmap 功能制作热图。我的问题总是高低之间的所有值都显示为相同的颜色。有什么方法可以显示更多动态热图图片吗?
尝试这个:
library(RColorBrewer) colors <- colorRampPalette(brewer.pal(9, "Blues"))(255) pheatmap(mat, col=colors, )
如果您的数据格式正确,它应该可以工作。