flowCore_asinht_trans: Inverse hyperbolic sine transformation(flowCore version).

Description Usage Arguments Value Examples

View source: R/scales_flowCore_fasinh.R

Description

Used to construct inverse hyperbolic sine transform object.

Usage

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

Arguments

...

parameters passed to arcsinhTransform

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

asinht transformation object

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
trans.obj <- flowCore_asinht_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"]]
brks.trans <- trans.func(brks)
brks.trans

ggcyto documentation built on Nov. 8, 2020, 5:30 p.m.