mcvis: Multi-collinearity Visualization

Description Usage Arguments Value Author(s) Examples

View source: R/mcvis.R

Description

Multi-collinearity Visualization

Usage

1
2
3
4
5
6
7
mcvis(
  X,
  sampling_method = "bootstrap",
  standardise_method = "studentise",
  times = 1000L,
  k = 10L
)

Arguments

X

A matrix of regressors (without intercept terms).

sampling_method

The resampling method for the data. Currently supports 'bootstrap' or 'cv' (cross-validation).

standardise_method

The standardisation method for the data. Currently supports 'euclidean' (default, centered by mean and divide by Euclidiean length) and 'studentise' (centred by mean and divide by standard deviation)

times

Number of resampling runs we perform. Default is set to 1000.

k

Number of partitions in averaging the MC-index. Default is set to 10.

Value

A list of outputs:

Author(s)

Chen Lin, Kevin Wang, Samuel Mueller

Examples

1
2
3
4
5
6
7
set.seed(1)
p = 10
n = 100
X = matrix(rnorm(n*p), ncol = p)
X[,1] = X[,2] + rnorm(n, 0, 0.1)
mcvis_result = mcvis(X = X)
mcvis_result

mcvis documentation built on July 30, 2021, 9:09 a.m.