flowjo_fasinh_trans: flowJo inverse hyperbolic sine transformation.

Description Usage Arguments Value Examples

View source: R/flow_trans.R

Description

Used to construct the inverse hyperbolic sine transform object.

Usage

1
2
3

Arguments

...

parameters passed to flowjo_fasinh

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

fasinh transformation object

Examples

1
2
3
4
5
6
7
8
9
trans.obj <- flowjo_fasinh_trans(equal.space = TRUE)
data <- 1:1e3
brks.func <- trans.obj[["breaks"]]
brks <- brks.func(data)
brks # fasinh space displayed at raw data scale

#transform it to verify it is equal-spaced at transformed scale
trans.func <- trans.obj[["transform"]]
round(trans.func(brks))

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