初学者R语言:热图基础画法及个性化调整详解

热图(Heatmap):用颜色变化直观的表达数据之间差异的图,是对实验数据进行质制和差异数据的展现,是数据挖掘类文章的标配。

Rplot1.jpeg

例如上图,每个小方格表示每个基因,其颜色表示该基因表达量大小,表达量越大颜色越深(红色为上调,蓝色为下调)。每行表示每个基因在不同样本中的表达量情况,每列表示每个样品中所有基因的表达量情况。上方树形图表示对来自不同实验分组的不同样品的聚类分析结果

Draw heatmaps#画热图

pheatmap(test)
pheatmap(test, kmeans_k = 2)#把所有行归为两类画热图
pheatmap(test, scale = "row")#归一化(按照行),防止因极大值使其他值的差异显现不出来
pheatmap(test, color = colorRampPalette(c("navy", "white", "firebrick3"))(50))#设定图表颜色,不设定则为默认颜色,50为50个色块
pheatmap(test, cluster_row = FALSE)#不按照行排序,意味遵循表格原始行的顺序
pheatmap(test, legend = FALSE)#不标注注释信息

Show text within cells#在单元格中显示文本

pheatmap(test, display_numbers = TRUE)#显示每个格子具体代表的数字
pheatmap(test, display_numbers = TRUE, number_format = "\%.1e")
pheatmap(test, display_numbers = matrix(ifelse(test > 5, "*", ""), nrow(test)))#大于5的*号
pheatmap(test, cluster_row = FALSE,  legend_breaks= -1:4,)
)
legend_breaks= -1:4#只显示注释信息的-1到4,
legend_labels = c("0","1e-4", "1e-3", "1e-2", "1e-1", "1")#把注释标签换成这几个数字

Fix cell sizes and save to file with correct size#修复单元格大小并以正确的大小保存到文件

pheatmap(test, cellwidth = 15, cellheight = 12,main = "Example heatmap")#设定宽,高,main为设定表的表头,也就是名字
pheatmap(test, cellwidth = 15, cellheight = 12, fontsize = 8, filename = "test.pdf")#fontsize设定字体大小,filename设定文件名

Generate annotations for rows and columns#为行和列生成注释

annotation_col = data.frame(
  CellType = factor(rep(c("CT1", "CT2"), 5)), 
  Time = 1:5
)
rownames(annotation_col) = paste("Test", 1:10, sep = "")

annotation_row = data.frame(
  GeneClass = factor(rep(c("Path1", "Path2", "Path3"), c(10, 4, 6)))
)
rownames(annotation_row) = paste("Gene", 1:20, sep = "")

Display row and color annotations#显示行和列注释

pheatmap(test, annotation_col = annotation_col)#显示列注释
pheatmap(test, annotation_col = annotation_col, annotation_legend = FALSE)#显示列注释,并去掉其解说
pheatmap(test, annotation_col = annotation_col, annotation_row = annotation_row)#显示行注释及列注释

Change angle of text in the columns更改列中文本的角度

pheatmap(test, annotation_col = annotation_col, annotation_row = annotation_row, angle_col = "45")#下标文本倾斜45角书写
pheatmap(test, annotation_col = annotation_col, angle_col = "0")#下标文本水平书写

Specify colors指定颜色

ann_colors = list(
  Time = c("white", "firebrick"),
  CellType = c(CT1 = "#1B9E77", CT2 = "#D95F02"),
  GeneClass = c(Path1 = "#7570B3", Path2 = "#E7298A", Path3 = "#66A61E")
)

分别设定3种注释不同的颜色

pheatmap(test, annotation_col = annotation_col, annotation_colors = ann_colors, main = "Title")
pheatmap(test, annotation_col = annotation_col, annotation_row = annotation_row, 
         annotation_colors = ann_colors)
pheatmap(test, annotation_col = annotation_col, annotation_colors = ann_colors[2]) 

把颜色显示在图表中

# Gaps in heatmaps
pheatmap(test, annotation_col = annotation_col, cluster_rows = FALSE, gaps_row = c(10, 14))#在第10行和14行后分开
pheatmap(test, annotation_col = annotation_col, cluster_rows = FALSE, gaps_row = c(10, 14), 
         cutree_col = 2)#纵分为两部分

Show custom strings as row/col names将自定义字符串显示为行/列名称

labels_row = c("", "", "", "", "", "", "", "", "", "", "", "", "", "", "", 
               "", "", "Il10", "Il15", "Il1b")#定义你想要的行名称

pheatmap(test, annotation_col = annotation_col, labels_row = labels_row)#替换原来的行名称

Specifying clustering from distance matrix从距离矩阵指定聚类

drows = dist(test, method = "minkowski")
dcols = dist(t(test), method = "minkowski")
pheatmap(test, clustering_distance_rows = drows, clustering_distance_cols = dcols)
pheatmap(test)
pheatmap(test, kmeans_k = 2)#把所有行归为两类画热图
pheatmap(test, scale = "row")#归一化(按照行),防止因极大值使其他值的差异显现不出来
pheatmap(test, color = colorRampPalette(c("navy", "white", "firebrick3"))(50))#设定图表颜色,不设定则为默认颜色,50为50个色块
pheatmap(test, cluster_row = FALSE)#不按照行排序,意味遵循表格原始行的顺序
pheatmap(test, legend = FALSE)#不标注注释信息

Show text within cells#在单元格中显示文本

pheatmap(test, display_numbers = TRUE)#显示每个格子具体代表的数字
pheatmap(test, display_numbers = TRUE, number_format = "\%.1e")
pheatmap(test, display_numbers = matrix(ifelse(test > 5, "*", ""), nrow(test)))#大于5的*号
pheatmap(test, cluster_row = FALSE,  legend_breaks= -1:4,)
)
,#legend_breaks= -1:4#只显示注释信息的-1到4,
,#legend_labels = c("0","1e-4", "1e-3", "1e-2", "1e-1", "1")#把注释标签换成这几个数字

Fix cell sizes and save to file with correct size#修复单元格大小并以正确的大小保存到文件

pheatmap(test, cellwidth = 15, cellheight = 12,main = "Example heatmap")#设定宽,高,main为设定表的表头,也就是名字
pheatmap(test, cellwidth = 15, cellheight = 12, fontsize = 8, filename = "test.pdf")#fontsize设定字体大小,filename设定文件名

Generate annotations for rows and columns#为行和列生成注释

annotation_col = data.frame(
  CellType = factor(rep(c("CT1", "CT2"), 5)), 
  Time = 1:5
)
rownames(annotation_col) = paste("Test", 1:10, sep = "")

annotation_row = data.frame(
  GeneClass = factor(rep(c("Path1", "Path2", "Path3"), c(10, 4, 6)))
)
rownames(annotation_row) = paste("Gene", 1:20, sep = "")

Display row and color annotations#显示行和列注释

pheatmap(test, annotation_col = annotation_col)#显示列注释
pheatmap(test, annotation_col = annotation_col, annotation_legend = FALSE)#显示列注释,并去掉其解说
pheatmap(test, annotation_col = annotation_col, annotation_row = annotation_row)#显示行注释及列注释

Change angle of text in the columns更改列中文本的角度

pheatmap(test, annotation_col = annotation_col, annotation_row = annotation_row, angle_col = "45")#下标文本倾斜45角书写
pheatmap(test, annotation_col = annotation_col, angle_col = "0")#下标文本水平书写

Specify colors指定颜色

ann_colors = list(
  Time = c("white", "firebrick"),
  CellType = c(CT1 = "#1B9E77", CT2 = "#D95F02"),
  GeneClass = c(Path1 = "#7570B3", Path2 = "#E7298A", Path3 = "#66A61E")
)#分别设定3种注释不同的颜色

pheatmap(test, annotation_col = annotation_col, annotation_colors = ann_colors, main = "Title")
pheatmap(test, annotation_col = annotation_col, annotation_row = annotation_row, 
         annotation_colors = ann_colors)
pheatmap(test, annotation_col = annotation_col, annotation_colors = ann_colors[2]) #把颜色显示在图表中

Gaps in heatmaps

pheatmap(test, annotation_col = annotation_col, cluster_rows = FALSE, gaps_row = c(10, 14))#在第10行和14行后分开
pheatmap(test, annotation_col = annotation_col, cluster_rows = FALSE, gaps_row = c(10, 14), 
         cutree_col = 2)#纵分为两部分

Show custom strings as row/col names将自定义字符串显示为行/列名称

labels_row = c("", "", "", "", "", "", "", "", "", "", "", "", "", "", "", 
               "", "", "Il10", "Il15", "Il1b")#定义你想要的行名称

pheatmap(test, annotation_col = annotation_col, labels_row = labels_row)#替换原来的行名称

Specifying clustering from distance matrix

drows = dist(test, method = "minkowski")
dcols = dist(t(test), method = "minkowski")
pheatmap(test, clustering_distance_rows = drows, clustering_distance_cols = dcols)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容