matrix为原始矩阵,提取列名前缀为P1TLH的列,组成新的矩阵patient1
patient1<-matrix[,grep("^P1TLH", colname(matrix), ignore.case = FALSE)]
提取行名前缀为Mt-的列(线粒体基因),组成新的矩阵patient2
patient2<-matrix[grep("Mt-", row.names(matrix),ignore.case = T),]
matrix为原始矩阵,提取列名前缀为P1TLH的列,组成新的矩阵patient1
patient1<-matrix[,grep("^P1TLH", colname(matrix), ignore.case = FALSE)]
提取行名前缀为Mt-的列(线粒体基因),组成新的矩阵patient2
patient2<-matrix[grep("Mt-", row.names(matrix),ignore.case = T),]
本文标题:提取行名或列名前缀生成新的矩阵
本文链接:https://www.haomeiwen.com/subject/wuvadktx.html
网友评论