Normalization
normalize.Rd
Apply a specified type of normalization to the data.
Arguments
- dataSet
A data frame containing the data signals.
- method
A string (default = "quant") specifying the method of normalization to apply:
Row-wise (sample-wise) normalization:
"mean": Samples are normalized to the mean value of all variables for a given sample.
"median": samples are normalized to the median value of all variables for a given sample.
"quantile": Quantile normalization.
Column-wise (metabolite-wise) normalization:
"meanCtr": Mean centering.
"medianCtr": Median centering.
"auto": Auto scaling.
"level": Level scaling.
"pareto": Pareto scaling.
"range": Range scaling.
"vast": Vast scaling.