## correlation heatmap
### 应用场景
可以同时展示多个变量之间的相关关系,比如,同时展示10个基因直接的相关系数
### correlation plot
```R
library(ggcorrplot)
# 准备数据
# 构建相关表达矩阵
get_lower_tri<-function(cormat){
cormat[upper.tri(cormat)] <- NA
return(cormat)
}
# Get upper triangle of the correlation matrix
get_upper_tri <- function(cormat){
cormat[lower.tri(cormat)]<- NA
return(cormat)
}
# Reorder the correlation matrix
reorder_cormat <- function(cormat){
# Use correlation between variables as distance
dd <- as.dist((1-cormat)/2)
hc <- hclust(dd)
cormat <-cormat[hc$order, hc$order]
}
# 利用前面两节中差异表达数据,选取10个基因的数据做展示
rt_cor <- t(rt_ht[20:30, ])
cormat <- round(cor(rt_cor), 2)
```
> cormat数据结构如下
![cor_data_format](http://kancloud.nordata.cn/2018-12-30-074434.png)
```R
svg(file = 'heatmap9.svg', width = 10, height = 6)
ggcorrplot(cormat)
dev.off()
# 可以改变下颜色
svg(file = 'heatmap10.svg', width = 10, height = 6)
ggcorrplot(cormat, hc.order = TRUE,
outline.col = "white",
colors = c("#6D9EC1", "white", "#E46726"))
dev.off()
# 可以按照相关系数排个序
svg(file = 'heatmap11.svg', width = 10, height = 6)
ggcorrplot(cormat, hc.order = TRUE, outline.col = "white")
dev.off()
# 可以展示upper或者lower
# 设置type参数
svg(file = 'heatmap12.svg', width = 10, height = 6)
ggcorrplot(cormat, hc.order = TRUE, outline.col = "white", type = "lower")
dev.off()
# 可以加上相关系数的值
# lab = TRUE
svg(file = 'heatmap12.svg', width = 10, height = 6)
ggcorrplot(cormat, hc.order = TRUE, type = "lower", lab = TRUE)
dev.off()
# 也可以换种展示方式
# method = "circle"
svg(file = 'heatmap14.svg', width = 10, height = 6)
ggcorrplot(cormat, hc.order = TRUE, type = "lower",
method = "circle")
dev.off()
```
![cor_heatmap](http://kancloud.nordata.cn/2018-12-30-074435.png)![cor_heatmap](http://kancloud.nordata.cn/2018-12-30-074436.png)
![cor_heatmap](http://kancloud.nordata.cn/2018-12-30-074437.png)![cor_heatmap](http://kancloud.nordata.cn/2018-12-30-074438.png)
![cor_heatmap](http://kancloud.nordata.cn/2018-12-30-074440.png)![cor_heatmap](http://kancloud.nordata.cn/2018-12-30-074441.png)
- 智汇医圈
- 第一章 前言
- 1.1 简介
- 1.2 制作该教程的目的
- 1.3 学习该教程需要掌握的基础知识
- 1.4 该教程适用人群
- 第二章 散点图(scatter plot)
- 2.1 基本的散点图
- 2.2 3D 散点图
- 第三章 线图(line plot)
- 3.1 基本的线图
- 第四章 箱型图(boxplot)
- 4.1 基本的箱型图
- 4.2 图形参数调整
- 4.3 多分组箱型图
- 4.4 小提琴图
- 第五章 密度图(density plot)
- 5.1 基本的密度图
- 第六章 热图(Heatmap)
- 6.1 基本的热图
- 6.2 ggplot2 heatmap
- 6.3 相关性热图
- 第七章 主成分分析(PCA)
- 7.1 2D PCA
- 7.2 3D PCA
- 第八章 ROC 曲线
- 8.1 基本的 ROC 曲线
- 第九章 生存分析(KM plot)
- 9.1 基本的生存分析
- 第十章 KEGG 和 GO 分析
- 10.1 KEGG 分析
- 10.2 GO 分析
- 第十一章 Circular plot
- 11.1 基本的 Circular plot
- 附录 下载数据