Description Usage Arguments Value Examples
hyperbolic sine/inverse hyperbolic sine transform function constructor.
It is simply a special form of flowjo_fasinh
with length
set to 1
and different default values for parameters t,m,a
.
1 | asinh_Gml2(T = 262144, M = 4.5, A = 0, inverse = FALSE)
|
T |
numeric the maximum value of input data |
M |
numeric the full width of the transformed display in asymptotic decades |
A |
numeric Additional negative range to be included in the display in asymptotic decades |
inverse |
whether to return the inverse function |
fasinh/fsinh transform function
1 2 3 4 5 6 7 | trans <- asinh_Gml2()
data.raw <- c(1,1e2,1e3)
data.trans <- trans(data.raw)
data.trans
inverse.trans <- asinh_Gml2(inverse = TRUE)
inverse.trans(data.trans)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.