transform-class: 'transform': a class for transforming flow-cytometry data by...

Description Slots Methods Author(s) See Also Examples

Description

Transform objects are simply functions that have been extended to allow for specialized dispatch. All of the “...Transform” constructors return functions of this type for use in one of the transformation modalities.

Slots

.Data

Object of class "function"

transformationId

A name for the transformation object

Methods

summary

Return the parameters

Author(s)

N LeMeur

See Also

linearTransform, lnTransform, logicleTransform, biexponentialTransform, arcsinhTransform, quadraticTransform, logTransform

Examples

1
2
3
4
5
6
7
8
9
cosTransform <- function(transformId, a=1, b=1){
  t = new("transform", .Data = function(x) cos(a*x+b))
  t@transformationId = transformId
  t
}

cosT <- cosTransform(transformId="CosT",a=2,b=1)

summary(cosT)

flowCore documentation built on Nov. 8, 2020, 5:19 p.m.