logicle_trans: logicle transformation.

Description Usage Arguments Value Examples

View source: R/flow_trans.R

Description

Used for construct logicle transform object.

Usage

1
logicle_trans(..., n = 6, equal.space = FALSE)

Arguments

...

arguments passed to logicleTransform.

n

desired number of breaks (the actual number will be different depending on the data range)

equal.space

whether breaks at equal-spaced intervals

Value

a logicle transformation object

Examples

1
2
3
4
5
6
7
trans.obj <- logicle_trans(equal.space = TRUE)
data <- 1:1e3
brks.func <- trans.obj[["breaks"]]
brks <- brks.func(data)
brks # logicle space displayed at raw data scale
#transform it to verify the equal-spaced breaks at transformed scale
print(trans.obj[["transform"]](brks))

flowWorkspace documentation built on Nov. 8, 2020, 8:08 p.m.