Learn R Programming

lineup (version 0.44)

fscale: Standardize the columns of a matrix

Description

Standardize each column in a matrix, so that the columns have mean 0 and SD 1.

Usage

fscale(x)

Value

A matrix of the same form as the input, but with columns transformed to have mean 0 and SD 1.

Arguments

x

A numeric matrix.

Author

Karl W Broman, broman@wisc.edu

Details

Missing values (NA) are ignored and left as is.

If there is just 1 non-missing value in a column, it is left as is.

This function uses a one-pass algorithm to calculate the mean and SD, which is fast but can show a bit of round-off error.

See Also

Examples

Run this code

x <- matrix(1:10, ncol=2)
y <- fscale(x)

Run the code above in your browser using DataLab