[e26484]: / OmicsFold / man / normalise.logit.Rd

Download this file

30 lines (29 with data), 1.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/MixMC.R
\name{normalise.logit}
\alias{normalise.logit}
\title{Normalise using the logit function}
\usage{
normalise.logit(input)
}
\arguments{
\item{input}{Data frame of input compositional data to normalise. Input data
should be proportional 0-1.}
}
\value{
Data normalised using empirical logit. Proportions below 0.5 will be
negative, and output will tend to -/+ infinity for zero or 1 input.
}
\description{
Apply the standard logit normalisation to a data frame of omics input data.
This is intended to convert compositional data, e.g. proportional data in the
range 0..1, to Euclidean space which is most appropriate for the linear
models. The logit function will tend to +/- infinity for input values close
to 100% and 0% respectively. The logit or empirical logit function will be a
more appropriate choice than centred log-ratio (CLR) for non-OTU data.
}
\examples{
\dontrun{
normalise.logit(data.proportional)
}
}