Entering edit mode
2.8 years ago
Darya
•
0
I'm trying to generate a dotplot like the following one using a seurat object and seurat Dotplot function, Does anyone know how can I generate it? I want to have different panels based on experiment conditions?
You can use
patchwork
to easily combine multiple plots.dot1 <- DotPlot(...) dot2 <- DotPlot(...) dot3 <- DotPlot(...)
and thendot1 / dot2 / dot3
ordot1 | dot2 | dot3
for horizontal alignment.