美文网首页ggplot集锦
基因表达箱图并添加散点

基因表达箱图并添加散点

作者: yingyonghui | 来源:发表于2022-01-13 21:06 被阅读0次
ggplot(markers.exp, aes(x=Cluster, y=genePlot, color=Cluster)) + 
geom_boxplot(width=0.6, lwd=0.6, fill="white", outlier.fill="white", outlier.color="white") + 
geom_jitter(aes(fill=Cluster), width=0.18, shape=21, size=0.03) +
labs(x='',y='') +
theme(legend.position='none', axis.text=element_text(size=17), axis.title= element_text(size=17))

相关文章

网友评论

    本文标题:基因表达箱图并添加散点

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