美文网首页R
Seurat:计算cluster的细胞比例和绘制堆叠条形图

Seurat:计算cluster的细胞比例和绘制堆叠条形图

作者: 阿糖胞苷_SYSU | 来源:发表于2019-08-04 16:52 被阅读0次

    计算各个cluster的细胞数;

    table(Idents(pbmc))

    定义对应每个cluster对应的细胞类型,也可将ident改为相应的细胞类型,计算每个细胞类型的细胞数

    计算每个样本的细胞数

    table(pbmc$sampleID)

    table(Seuratobject$slotname)

    table(Idents(Seuratobject),Seuratobject$slotname)

    $slotname可根据研究具体分组对每个样本自行定义

    计算细胞比例

    prop.table(table(Idents(pbmc)))

    prop.table(table(Idents(Seuratobject), Seuratobject$slotname))

    绘制堆叠条形图

    cell.prop<-as.data.frame(prop.table(table(Idents(pbmc), pbmc$patient)))

    colname(cell.prop)<-c(''cluster","patient","proportion")

    ggplot(cell.prop,aes(patient,proportion,fill=cluster))+

    geom_bar(stat="identity",position="fill")+

    ggtitle("")+

    theme_bw()+

    theme(axis.ticks.length=unit(0.5,'cm'))+

    guides(fill=guide_legend(title=NULL))

    相关文章

      网友评论

        本文标题:Seurat:计算cluster的细胞比例和绘制堆叠条形图

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