The folded power transformation
The folded power transformation.
fp(x, lambda)
x |
A matrix with the compositional data. Zero values are allowed. |
lambda |
The value of the power transformation, it has to be between -1 and 1. If zero values are present it has to
be greater than 0. If λ=0 the additive log-ratio transformation ( |
The folded power transformation is applied to the compositional data.
A matrix with the transformed data.
Michail Tsagris.
R implementation and documentation: Michail Tsagris mtsagris@uoc.gr.
Atkinson, A. C. (1985). Plots, transformations and regression; an introduction to graphical methods of diagnostic regression analysis Oxford University Press.
library(MASS) x <- as.matrix(fgl[, 2:9]) x <- x / rowSums(x) y1 <- fp(x, 0.2) y2 <- fp(x, 0) rbind( colMeans(y1), colMeans(y2) ) rowSums(y1) rowSums(y2)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.