08--Correlation Analysis to Validate Results

Purpose:

To validate the cell type enrichment results from the xCell, do correlation analysis to see the trend between expected each cell type proportions and real each cell type counts.

1. Data preprocessing

  • transform row and column of xcell resuts
a <- read.table("xCell__xCell_0412052318.txt",header = TRUE,sep="\t")
b <- t(a)
write.table(b,file="xCell_res2",quote = FALSE,sep="\t",col.names = FALSE)
  • combined xCell results with bloodCount to make new matrix
paste bloodCounts_2 xCell_res2 > cor_input
awk '{$39="";print $0}'  cor_input > cor_input_2
sed 's/\t\t/\t/g' cor_input_2 > cor_input_3

2. Correlation analysis using cor function or rcorr function in Hmisc package

  • Load data
    • all data of cell type
setwd("F:/sdc_project")
mydata <- read.table("cor_input_3",header = TRUE,sep="\t",row.names = 1) 
> mydata[1:4,1:8]
      BAS   BA CCMH EOS   EO  HB  HCM   HE
31201 0.4 0.02  345 2.9 0.15 162 32.9 4.93
31202 0.3 0.02  315 1.5 0.10 130 26.3 4.95
31303 0.6 0.03  327 1.9 0.09 148 27.4 5.40
31304 0.3 0.02  330 2.0 0.12 146 29.7 4.92
> dim(mydata)
[1] 915 104
  • Cell type in bloodCounts realsted xCell results
part_data <- mydata[,c(1,2,4,5,8,11,16,17,18,19,20,23,24,41,57,59,76,81,85)] 
> part_data[1:4,]
      BAS   BA EOS   EO   HE   LE  MON  MOt  NEU   NE PTES RETIS  RETAB Basophils
31201 0.4 0.02 2.9 0.15 4.93 5.16 10.3 0.53 60.2 3.11  163  1.31 0.0646    0.6411
31202 0.3 0.02 1.5 0.10 4.95 6.85  6.6 0.45 62.0 4.25  156  1.50 0.0743    0.1741
31303 0.6 0.03 1.9 0.09 5.40 4.77  6.3 0.30 59.1 2.82  201  0.96 0.0518    0.6074
31304 0.3 0.02 2.0 0.12 4.92 5.89  6.6 0.39 50.7 2.98  214  1.08 0.0531    0.0312
      Eosinophils Erythrocytes Monocytes Neutrophils Platelets
31201      0.0918       0.1071    0.1476      0.0000    0.1022
31202      0.3104       0.1849    0.0276      0.1492    0.2070
31303      0.1864       0.0817    0.0000      0.0745    0.2708
31304      0.0000       0.0000    0.0000      0.0000    0.1819
> dim(part_data)
[1] 915  19
  • Calculate the correlation coefficient matrix
    • use cor function
# (1) use cor function
res <- cor(mydata)
res <- round(res, 2) 
res[1:4,39:49]
part_res <- cor(part_data)
part_res <- round(part_res, 2)
part_res[1:4,]
  • use rcorr() function
    cor() function only can calculate correlation coefficient,but can't provide significant p -value, rcorr() function in Hmisc package can calculate both correlation coefficient and pvalue .
    usege : rcorr(x, type =c(“pearson”,“spearman”))
# install the package
source('http://bioconductor.org/biocLite.R')
biocLite("Hmisc")
library(Hmisc)

res2 <- rcorr(as.matrix(mydata))
res2
# part_data
part_res2 <-  rcorr(as.matrix(part_data))
part_res2
# use res2$r、res2$P to get correlation coefficient and p-value
res2$r
res2$P
# part_data
part_res2$r
part_res2$P
> part_res2
               BAS    BA   EOS    EO    HE    LE   MON   MOt   NEU    NE  PTES RETIS
BAS           1.00  0.89  0.22  0.15 -0.09 -0.19  0.06 -0.10 -0.19 -0.23  0.01 -0.05
BA            0.89  1.00  0.23  0.29 -0.04  0.22 -0.03  0.17 -0.06  0.12  0.19  0.00
EOS           0.22  0.23  1.00  0.93  0.01 -0.03  0.01 -0.02 -0.43 -0.22  0.09 -0.19
EO            0.15  0.29  0.93  1.00  0.03  0.23 -0.06  0.14 -0.32  0.01  0.20 -0.14
HE           -0.09 -0.04  0.01  0.03  1.00  0.09  0.07  0.14 -0.03  0.05 -0.17 -0.02
LE           -0.19  0.22 -0.03  0.23  0.09  1.00 -0.25  0.64  0.38  0.91  0.37  0.07
MON           0.06 -0.03  0.01 -0.06  0.07 -0.25  1.00  0.54 -0.32 -0.31 -0.17  0.02
MOt          -0.10  0.17 -0.02  0.14  0.14  0.64  0.54  1.00  0.07  0.51  0.20  0.09
NEU          -0.19 -0.06 -0.43 -0.32 -0.03  0.38 -0.32  0.07  1.00  0.71 -0.06  0.15
NE           -0.23  0.12 -0.22  0.01  0.05  0.91 -0.31  0.51  0.71  1.00  0.23  0.10
PTES          0.01  0.19  0.09  0.20 -0.17  0.37 -0.17  0.20 -0.06  0.23  1.00 -0.08
RETIS        -0.05  0.00 -0.19 -0.14 -0.02  0.07  0.02  0.09  0.15  0.10 -0.08  1.00
RETAB        -0.07  0.00 -0.18 -0.11  0.27  0.10  0.04  0.13  0.14  0.11 -0.12  0.95
Basophils     0.01 -0.02 -0.04 -0.07  0.12 -0.08  0.21  0.10  0.02 -0.05 -0.16 -0.12

3. Visualization

#abbr.colnames
symnum(res, abbr.colnames = FALSE)
symnum(part_res, abbr.colnames = FALSE)
biocLite("corrplot")
library(corrplot)

corrplot(res, type = "upper", tl.col = "black", tl.srt = 45)
corrplot(part_res, type = "upper", tl.col = "black", tl.srt = 45)
part_res
  • Combined correlation coefficient and P-value
# Insignificant correlations are leaved blank
corrplot(res2$r, type="upper",p.mat = res2$P, sig.level = 0.01, tl.col = "black", insig = "blank")

corrplot(part_res2$r, order="hclust",type="upper",p.mat = res2$P, sig.level = 0.05, tl.col = "black",insig = "blank")
corrplot.mixed(part_res2$r, order="hclust",p.mat = res2$P, sig.level = 0.05, tl.col = "black",insig = "blank")
part_res2_r_mixplot
  • Use chart.Correlation(): Draw scatter plots
    Use chart.Correlation() in PerformanceAnalytics package
biocLite("PerformanceAnalytics")
library(PerformanceAnalytics)#加载包
chart.Correlation(mydata, histogram=TRUE, pch=19)
chart.Correlation(part_data, histogram=TRUE, pch=19)
image.png
  • heatmap
col<- colorRampPalette(c("blue", "white", "red"))(20)
heatmap(x = res2$r, col = col, symm = TRUE)
heatmap(x=part_res2$r,col=col,symn=TRUE)
part_data_resheatmap
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念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

推荐阅读更多精彩内容

  • 2018年6月1日,晚间的20:00-21:00,在五维南京群里分享了一个小时的五维领导力的课程复盘,为了便于大家...
    一口添加剂阅读 257评论 0 0
  • 《每个人都有一个死角》 每个人都有一个死角, 自己走不出来,别人也闯不进去。 我把最深沉的秘密放在那里。 你不懂我...
    Lin先森Yo阅读 1,125评论 0 0
  • 【安昕梦梦】20171111 学习力践行D32 周六上午一家人去逛了超市,回来娃自己玩了乐高。 晚上和娃一起看了玩...
    梦梦_91fd阅读 121评论 0 0
  • 1 自我确认,重复地对自己说你是最棒的、你是最优秀的……,我发现我的沟通能力真的得到了很好的提升,我在电话中侃侃...
    LiHongxi阅读 154评论 0 0