Description
Similar to the Box-Cox transformation, the asinh
or pseudolog transformation is a common transformation for reducing skewness and stabilizing variance. It's most often used for variables that are roughly log-normal, but can take on both positive and negative values; for example, net worth is often well-modeled as log-normal for the majority of the population, but can be negative if debts exceed assets. asinh(x/2)
is approximately equal to ln(|x|)
for large values of |x|
, but is approximately equal to x
for values close to 0.
The general form of the transformation is x = scale * asinh(x / (2scale))
, with scale
a parameter chosen to satisfy some criterion such as stable variance, minimum skewness, or maximizing the log-likelihood that the data come from a normal distribution.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
priority low / involved