https://github.com/cran/robCompositions
Revision 9d594684d2bd4630b4501eac818563d0509628d4 authored by Matthias Templ on 14 August 2017, 12:14:11 UTC, committed by cran-robot on 14 August 2017, 12:14:11 UTC
1 parent 608a88e
Raw File
Tip revision: 9d594684d2bd4630b4501eac818563d0509628d4 authored by Matthias Templ on 14 August 2017, 12:14:11 UTC
version 2.0.6
Tip revision: 9d59468
cenLRinv.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/cenLRinv.R
\name{cenLRinv}
\alias{cenLRinv}
\title{Inverse centred log-ratio transformation}
\usage{
cenLRinv(x, useClassInfo = TRUE)
}
\arguments{
\item{x}{an object of class \dQuote{clr}, \dQuote{data.frame} or
\dQuote{matrix}}

\item{useClassInfo}{if the object is of class \dQuote{clr}, the useClassInfo
is used to determine if the class information should be used. If yes, also
absolute values may be preserved.}
}
\value{
the transformed data set.
}
\description{
Applies the inverse centred log-ratio transformation.
}
\examples{

data(expenditures)
eclr <- cenLR(expenditures, 2)
inveclr <- cenLRinv(eclr)
head(expenditures)
head(inveclr)
head(cenLRinv(eclr$x.clr))

}
\references{
Aitchison, J. (1986) \emph{The Statistical Analysis of
Compositional Data} Monographs on Statistics and Applied Probability.
Chapman \& Hall Ltd., London (UK). 416p.
}
\seealso{
\code{\link{cenLR}}, \code{\link{addLR}}, \code{\link{pivotCoord}},
\code{\link{addLRinv}}, \code{\link{pivotCoordInv}}
}
\author{
Matthias Templ
}
\keyword{manip}
back to top