1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
par(mfrow = c(2,2), mar = c(5, 4, 1, 1), bty = "n")
smoothScatter(log10(seurat_obj$nCount_RNA), log10(seurat_obj$nFeature_RNA),
xlab = "log10(Library sizes)", ylab = "log10(# of expressed genes)",
nrpoints = 500, cex = 0.5)
smoothScatter(log10(seurat_obj$nCount_RNA), seurat_obj$pct_ribo,
xlab = "log10(Library sizes)", ylab = "Ribosome prop. (%)",
nrpoints = 500, cex = 0.5)
abline(h = 10, lty = 1)
smoothScatter(log10(seurat_obj$nCount_RNA), seurat_obj$pct_mito,
xlab = "log10(Library sizes)", ylab = "Mitochondrial prop. (%)",
nrpoints = 500, cex = 0.5)
abline(h = 5, lty = 1)
smoothScatter(seurat_obj$pct_ribo, seurat_obj$pct_mito,
xlab = "Ribosome prop. (%)", ylab = "Mitochondrial prop. (%)",
nrpoints = 500, cex = 0.5)
abline(h = 5, lty = 1)
abline(v = 10, lty = 1)
|