Combine the plots from diffSCESets
into a single panel.
makeDiffPanel(diff, title = "Difference comparison", labels = c("Means", "Variance", "Library size", "Zeros per cell", "Zeros per gene", "Mean-variance relationship", "Mean-zeros relationship"))
diff | list returned by |
---|---|
title | title for the panel. |
labels | vector of labels for each of the seven sections. |
Combined panel plot
# NOT RUN { sim1 <- splatSimulate(nGenes = 1000, batchCells = 20) sim2 <- simpleSimulate(nGenes = 1000, nCells = 20) difference <- diffSCESets(list(Splat = sim1, Simple = sim2), ref = "Simple") panel <- makeDiffPanel(difference) # }