-
Luke Zappia authored
* master: (183 commits) Run checks Add batch effects to vignette Update splatEstimate to set batchCells Add batch effects to splatSimulate Update SplatParams Bump version number Update citation Fix error handling when fitting means Fix comparison plots Bioconductor 3.5 release bump x.y.z versions to odd y after creation of 3_5 branch Creating branch for BioC 3.5 release bump x.y.z versions to even y prior to creation of 3_5 branch Update NEWS and DESCRIPTION Version 0.99.15 Remove dropout.present estimation Add limits to zeros plots Adjust default splat DE fac params Add BPPARAM to scDDSimulate Add summariseDiff function ... From: Luke Zappia <lazappi@users.noreply.github.com> git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/splatter@131029 bc3139a8-67e5-0310-9ffc-ced21a209358
Luke Zappia authored* master: (183 commits) Run checks Add batch effects to vignette Update splatEstimate to set batchCells Add batch effects to splatSimulate Update SplatParams Bump version number Update citation Fix error handling when fitting means Fix comparison plots Bioconductor 3.5 release bump x.y.z versions to odd y after creation of 3_5 branch Creating branch for BioC 3.5 release bump x.y.z versions to even y prior to creation of 3_5 branch Update NEWS and DESCRIPTION Version 0.99.15 Remove dropout.present estimation Add limits to zeros plots Adjust default splat DE fac params Add BPPARAM to scDDSimulate Add summariseDiff function ... From: Luke Zappia <lazappi@users.noreply.github.com> git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/splatter@131029 bc3139a8-67e5-0310-9ffc-ced21a209358
makeOverallPanel.Rd 1.04 KiB
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/compare.R
\name{makeOverallPanel}
\alias{makeOverallPanel}
\title{Make overall panel}
\usage{
makeOverallPanel(comp, diff, title = "Overall comparison",
row.labels = c("Means", "Variance", "Mean-variance relationship",
"Library size", "Zeros per cell", "Zeros per gene",
"Mean-zeros relationship"))
}
\arguments{
\item{comp}{list returned by \code{\link{compareSCESets}}.}
\item{diff}{list returned by \code{\link{diffSCESets}}.}
\item{title}{title for the panel.}
\item{row.labels}{vector of labels for each of the seven rows.}
}
\value{
Combined panel plot
}
\description{
Combine the plots from \code{compSCESets} and \code{diffSCESets} into a
single panel.
}
\examples{
\dontrun{
sim1 <- splatSimulate(nGenes = 1000, batchCells = 20)
sim2 <- simpleSimulate(nGenes = 1000, nCells = 20)
comparison <- compSCESets(list(Splat = sim1, Simple = sim2))
difference <- diffSCESets(list(Splat = sim1, Simple = sim2), ref = "Simple")
panel <- makeOverallPanel(comparison, difference)
}
}