Hi,
Do you know how to 'organize' multiple umap generates with Seurat FeaturePlot
in a specific way? For example organize 4 plots all all vertically or horizontally instead of having them organised as 2x2 or only plot_grid
is the solution?
This is my code:
SelectedGenes2 = c("Calb2","Rxrg", "B3gat1", "Ephx4")
plot <- FeaturePlot(pbmc, features = SelectedGenes2, label = T)
plot + plot_annotation(title = "Cell type1", theme = theme(plot.title = element_text(size = 18, face = 'bold', hjust = 0.5)))
ggsave("Umap Cell type1.tiff")
Thank you
Camilla
camillab. - After a certain version of seurat, i cannot recall, all seurat plot objects became exportable as ggplot objects. As a result, now any plot management system that can work with ggplot objects can be used to arrange plots coming from seurat.
The data visualization vignette from the seurat website itself addresses this. See: https://satijalab.org/seurat/articles/visualization_vignette. Here, you will see patchwork, which others have already recommended, mentioned; but there are other solutions granted the decision to standardize to ggplot...