Entering edit mode
                    3.7 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
patchworkto easily combine multiple plots.dot1 <- DotPlot(...) dot2 <- DotPlot(...) dot3 <- DotPlot(...)and thendot1 / dot2 / dot3ordot1 | dot2 | dot3for horizontal alignment.