Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

fp

The folded power transformation


Description

The folded power transformation.

Usage

fp(x, lambda)

Arguments

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 (alr) is applied. If zero values are present λ must be strictly positive.

Details

The folded power transformation is applied to the compositional data.

Value

A matrix with the transformed data.

Author(s)

Michail Tsagris.

R implementation and documentation: Michail Tsagris mtsagris@uoc.gr.

References

Atkinson, A. C. (1985). Plots, transformations and regression; an introduction to graphical methods of diagnostic regression analysis Oxford University Press.

See Also

Examples

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)

Compositional

Compositional Data Analysis

v4.6
GPL (>= 2)
Authors
Michail Tsagris [aut, cre], Giorgos Athineou [aut], Abdulaziz Alenazi [ctb]
Initial release
2021-04-27

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.