Learn R Programming

flowTrans (version 1.24.0)

summary.flowTransResult: 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

References

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

See Also

extractParams, flowTransResult

Examples

Run this code
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)

Run the code above in your browser using DataLab