scale {compositions} | R Documentation |
The dataset is standardized by optional scaling and centering.
## S3 method for class 'acomp': scale(x,center=TRUE, scale=TRUE) ## S3 method for class 'rcomp': scale(x,center=TRUE, scale=TRUE) ## S3 method for class 'aplus': scale(x,center=TRUE, scale=TRUE) ## S3 method for class 'rplus': scale(x,center=TRUE, scale=TRUE) ## S3 method for class 'rmult': scale(x,center=TRUE, scale=TRUE)
x |
a dataset or a single vector of some type |
center |
logical value |
scale |
logical value |
scaling is defined in different ways for the different data types. It is always performed as an operation in the enclosing vector space. In all cases an independent scaling of the different coordinates is not always appropriate. This is only done for rplus and rmult geometries. The other three geometries are treated with a global scaling, keeping the relative variations of every part/amount.
a vector or data matrix, as x
and with the same class, but acordingly transformed.
K.Gerald v.d. Boogaart http://www.stat.boogaart.de
split{base}
data(SimulatedAmounts) plot(scale(acomp(sa.groups))) ## Not run: plot(scale(rcomp(sa.groups))) ## End(Not run) plot(scale(aplus(sa.groups))) ## Not run: plot(scale(rplus(sa.groups))) ## End(Not run) plot(scale(rmult(sa.groups)))