summary.flowTransResult {flowTrans}R Documentation

Summarize a flowTransResult object

Description

Print a summary of the contents of a flowTransResult object, including the type of transformation, the transformed data frame, and the transformed dimensions and transformation parameters.

Usage

summary.flowTransResult(object, ...)

Arguments

object

An object of flowTransResult returned by a call to flowTrans

...

Additional parameters passed through.

Value

No return value

Author(s)

Greg Finak <greg.finak@ircm.qc.ca>, Raphael Gottardo <raphael.gottardo@ircm.qc.ca>

References

Finak G, Perez JM, Weng A, Gottardo R. Optimizing Transformations for Flow Cytometry. (Submitted)

See Also

extractParams, flowTransResult

Examples

m <- t(matrix(rnorm(10000),2))
colnames(m) <- c("A","B")
m <- flowFrame(m)
res <- flowTrans(m, "mclMultivBoxCox", c("A","B"),
                 n2f=FALSE, parameters.only=FALSE)
summary(res)


[Package flowTrans version 1.32.0 Index]