分布图

R基本图形示例及代码(持续收集)

 

hist(MetaData$genes, breaks = 100, main = "Gene number distribution", xlab = "Gene number", ylab = "Cell count")
abline(v=3000,col = "blue")
abline(v=9000,col = "red")

  

PCA图

R基本图形示例及代码(持续收集)

画PCA,还是推荐scater,速度很快,一般的R包真是慢到你难以想象。

 

Scatterplot with marginal boxplots

在散点图的侧边画箱线图,可以在一张图上提供最多的信息。教程1教程2.

R基本图形示例及代码(持续收集)

 

 

教程

 

相关文章:

  • 2021-10-14
  • 2021-06-24
  • 2022-12-23
  • 2018-02-10
  • 2022-12-23
  • 2021-06-07
  • 2021-07-09
猜你喜欢
  • 2021-05-04
  • 2021-12-25
  • 2021-12-13
  • 2021-08-19
  • 2021-07-07
  • 2021-08-07
相关资源
相似解决方案