MaxAbsCor: Calculate the Maximum Absolute Correlation

Description Usage Arguments Value References Examples

View source: R/MaxAbsCor.R

Description

MaxAbsCor returns the maximum absolute correlation of a matrix

Usage

1

Arguments

X

A matrix object. In general, X stands for the design matrix.

Value

If all inputs are logical, then the output will be a positive number indicating maximum absolute correlation. maximum absolute correlation = max_{ij} |q_{ij}|

References

Georgiou, S. D. (2009) Orthogonal Latin hypercube designs from generalized orthogonal designs. Journal of Statistical Planning and Inference, 139, 1530-1540.

Examples

1
2
3
4
5
#create a toy LHD with 5 rows and 3 columns
toy=rLHD(n=5,k=3);toy

#Calculate the maximum absolute correlation of toy
MaxAbsCor(X=toy)

LHD documentation built on Aug. 1, 2021, 1:06 a.m.