美文网首页ggplot集锦
单细胞不同分组之间细胞比例柱状图展示

单细胞不同分组之间细胞比例柱状图展示

作者: 阿来呀 | 来源:发表于2023-05-05 11:40 被阅读0次
    image.png
    ggplot(cellratio,aes(x= celltype,weight = Freq,fill=group))+
       geom_bar(position = 'dodge')+
       theme_classic(base_size = 14,base_family = 'Arial')+
    + labs(x='',y='Cells(%)')+ theme(axis.title.x=element_blank(), # 去掉 title
    + axis.ticks.x=element_blank(), # 去掉 x 轴
    + axis.text.x = element_text(angle = 45,hjust = 1,size = 16))
    

    相关文章

      网友评论

        本文标题:单细胞不同分组之间细胞比例柱状图展示

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