RFmarkerDetector (version 1.0.1)

autoscale: Unit variance scaling method performed on the columns of the data (i.e. metabolite concentrations measured by 1H NMR or binned 1H NMR spectra)

Description

The function provides a data pretreatment approach called Autoscaling (also known as unit variance scaling). The data for each variable (metabolite) is mean centered and then divided by the standard deviation of the variable. This way each variable will have zero mean and unit standard deviation.

Usage

autoscale(data, exclude = T)

Arguments

data
a n x p data frame with n observations and p columns. While the first two columns usually represent the names of the samples and the class labels related to each sample respectively, the remaining columns represent metabolite concentrations measured by 1H NMR or bins of 1H NMR spectra
exclude
a boolean variable which stores a simple True/ False setting. If set to True the scaling method will exclude the first two columns.

Value

a scaled version of the input matrix

Examples

Run this code
## load the included example dataset
data(cachexiaData)
## call autoscale with the parameter exclude set to TRUE (default) 
## in order to exclude the first two columns of the dataset from scaling
data.scaled <- autoscale(cachexiaData, exclude = TRUE)

Run the code above in your browser using DataCamp Workspace