PercentMax: A function to scale data to the percent of the maximum...

Description Usage Arguments Value See Also Examples

View source: R/PercentMax.R

Description

This function rescales the columns in a data matrix to the percent of the maximum observed value. The variance is not scaled and missing values are ignored in the calculation.

Usage

1
PercentMax(DATA)

Arguments

DATA

A (non-empty) matrix with data values. Columns should be different traits and rows unique observations of those traits

Value

Returns a matrix with the same dimensions as DATA.

See Also

ZTrans, MeanCent

Examples

1
2
3
4
5
6
7
data(Nuclei)

colMeans(Nuclei, na.rm=TRUE)

Nuclei.PM<-PercentMax(Nuclei)

colMeans(Nuclei.PM, na.rm=TRUE)

multiDimBio documentation built on April 14, 2020, 5:41 p.m.