MVStandardize: Standardize multivariate data

View source: R/Estimation.r

MVStandardizeR Documentation

Standardize multivariate data

Description

For data formed by d-variate vectors x with sample covariance S and sample mean M, it computes the values z=S^{-1/2}(x-M)

Usage

MVStandardize(x)

Arguments

x

a multivariate data matrix, sample size is the number of rows

Value

a matrix of multivariate data with null mean vector and identity sample covariance matrix

Examples

x<-MASS::mvrnorm(1000,c(0,0,1,3),diag(4))
z<-MVStandardize(x)
mu_z<- apply(z,2,mean)
cov_z<- cov(z)


MultiStatM documentation built on Sept. 11, 2024, 6:01 p.m.