scores | R Documentation |
Returns a specified object from the cytofQC SingleCellExperiment
scores(x, type = c("all", "bead", "debris", "doublet", "dead"))
probs(x, type = c("all", "bead", "debris", "doublet", "dead"))
label(x)
tech(
x,
type = c("all", "Bead", "DNA", "Viability", "Event_length", "Center", "Offset",
"Width", "Residual")
)
initial(x, type = c("all", "bead", "debris", "doublet", "dead"))
x |
A |
type |
Identifies the type of objects to be returned. For
|
For probs
, scores
, and tech
, a numeric vector
or DataFrame
with the information for the event type(s) is returned.
For label
, a character vector containing the label for each event is
returned.
For tech
, a DataFrame
containing the technical variables
used to determine the label of each event. The bead, DNA, and viability
variables have an arcsinh transform, Event_length is unchanged, and
the Gaussian parameters have a log transform using log1p
.
data("raw_data", package = "CATALYST")
sce <- readCytof(raw_data, beads = "Beads", viability = c("cisPt1", "cisPt2"))
sce <- labelQC(sce)
table(label(sce))
cytofHist(scores(sce, type = 'bead'), label(sce), title = "Bead score")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.