美文网首页
FeaturePlot图修改

FeaturePlot图修改

作者: 阿来呀 | 来源:发表于2022-10-19 15:56 被阅读0次

单细胞FeaturePlot图

FeaturePlot(seurat.obj,features = "TBX19",reduction = "umap",pt.size = 1,label = T,label.size = 5,cols = c("lightgrey","blue"))+
  scale_x_continuous("")+scale_y_continuous("")+
  theme_bw()+ #改变ggplot2的主题
  theme( #进一步修改主题
    panel.grid.major = element_blank(),panel.grid.minor = element_blank(), #去掉背景线
    #axis.ticks = element_blank(),axis.text = element_blank(), #去掉坐标轴刻度和数字
    #legend.position = "none", #去掉图例
    plot.title = element_text(hjust = 0.5,size=15) #改变标题位置和字体大小
  )

相关文章

网友评论

      本文标题:FeaturePlot图修改

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