mpSTATIS.columnPreproc: mpSTATIS.columnPreproc: Column Preprocessing for STATIS

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/mpSTATIS.columnPreproc.R

Description

Preprocessing of the columns of the table for STATIS.

Usage

1
mpSTATIS.columnPreproc(data, column.preprocess = 'None')

Arguments

data

Data Matrix

column.preprocess

String option with the following options: 'None' (default),'Center','1Norm', 'Center_1Norm' and 'Z_Score'

Details

Column Preprocessing is the second preprocessing step in STATIS. The only combination of Column Preprocessing allowed is Column Center plus 1 Norm.Besides this combination, all other column preprocessing options are done independently.

If you need to create the Group Matrix into a design matrix, you can use makeNominalData which was developed by Derek Beaton.

Value

A matrix of the same dimensions as X, which is the result of the column preprocessing step chosen.

Author(s)

Cherise R. Chin Fatt and Hervé Abdi.

References

Abdi, H., Williams, L.J., Valentin, D., & Bennani-Dosse, M. (2012). STATIS and DISTATIS: Optimum multi-table principal component analysis and three way metric multidimensional scaling. Wiley Interdisciplinary Reviews: Computational Statistics, 4, 124-167

See Also

mpSTATIS.rowPreproc, mpSTATIS.tablePreproc, mpSTATIS.preprocess

Examples

1
2
3
4
# Center- type of column preprocessing chosen
column.preprocess = 'Center'
X <- matrix(1:10,2)
preproc <- mpSTATIS.columnPreproc(X, column.preprocess)

MExPosition documentation built on May 29, 2017, 2:27 p.m.