Revision a53065a09c3fce65a63e137deb5bccb6162e6cff authored by Matthias Templ on 18 November 2020, 20:10:02 UTC, committed by cran-robot on 18 November 2020, 20:10:02 UTC
1 parent 9ae1e67
Raw File
cenLRinv.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/cenLRinv.R
\name{cenLRinv}
\alias{cenLRinv}
\title{Inverse centred logratio mapping}
\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 resulting compositional data set.
}
\description{
Applies the inverse centred logratio mapping.
}
\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