Perform a arcsinh(x) transformation
A vector to normalize with with x
If TRUE, the transformed values are also centered and scaled, such that the transformation attempts a standard normal
additional arguments
an object of class 'arcsinh_x'
a vector of data to be (potentially reverse) transformed
if TRUE, performs reverse transformation
A list of class arcsinh_x
with elements
transformed original data
original data
mean after transformation but prior to standardization
sd after transformation but prior to standardization
number of nonmissing observations
Pearson's P / degrees of freedom
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.
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))
x <- rgamma(100, 1, 1)
arcsinh_x_obj <- arcsinh_x(x)
arcsinh_x_obj
#> Standardized asinh(x) Transformation with 100 nonmissing obs.:
#> Relevant statistics:
#> - mean (before standardization) = 0.7198804
#> - sd (before standardization) = 0.5443389
p <- predict(arcsinh_x_obj)
x2 <- predict(arcsinh_x_obj, newdata = p, inverse = TRUE)
all.equal(x2, x)
#> [1] TRUE