Description Usage Arguments Details Value Examples
Perform a arcsinh(x) transformation
1 2 3 4 5 6 7 8 |
x |
A vector to normalize with with x |
standardize |
If TRUE, the transformed values are also centered and scaled, such that the transformation attempts a standard normal |
object |
an object of class 'arcsinh_x' |
newdata |
a vector of data to be (potentially reverse) transformed |
inverse |
if TRUE, performs reverse transformation |
... |
additional arguments |
arcsinh_x
performs an arcsinh transformation in the context of
bestNormalize, such that it creates a transformation that can be estimated
and applied to new data via the predict
function.
The function is explicitly: log(x + sqrt(x^2 + 1))
A list of class arcsinh_x
with elements
x.t |
transformed original data |
x |
original data |
mean |
mean after transformation but prior to standardization |
sd |
sd after transformation but prior to standardization |
n |
number of nonmissing observations |
norm_stat |
Pearson's P / degrees of freedom |
standardize |
was the transformation standardized |
The predict
function returns the numeric value of the transformation
performed on new data, and allows for the inverse transformation as well.
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.