美文网首页
normalize.quantiles对表达矩阵进行校正

normalize.quantiles对表达矩阵进行校正

作者: 陈宇乔 | 来源:发表于2019-05-03 12:11 被阅读0次
# boxplot(exprSet,las=2) ## 下标竖排
library("preprocessCore")
exprSet2<- as.matrix(exprSet)
exprSet2<- normalize.quantiles(exprSet2)
# boxplot(exprSet,las=2)
row.names(exprSet2)<- row.names(exprSet)
colnames(exprSet2)<- colnames(exprSet)
exprSet<- as.data.frame(exprSet2)
image.png image.png

相关文章

网友评论

      本文标题:normalize.quantiles对表达矩阵进行校正

      本文链接:https://www.haomeiwen.com/subject/fobanqtx.html