Learn R Programming

EGAnet (version 0.9.6)

LCT: Loadings Comparison Test

Description

An algorithm to identify whether data were generated from a random, factor, or network model using factor and network loadings. The algorithm uses heuristics based on theory and simulation. These heuristics were then submitted to several deep learning neural networks with 240,000 samples per model with varying parameters.

Usage

LCT(data, n, iter = 100)

Arguments

data

Matrix or data frame. A dataframe with the variables to be used in the test or a correlation matrix. If the data used is a correlation matrix, the argument n will need to be specified

n

Integer. Sample size (if the data provided is a correlation matrix)

iter

Integer. Number of replicate samples to be drawn from a multivariate normal distribution (uses mvtnorm::mvrnorm). Defaults to 100

Value

Returns a list containing:

empirical

Prediction of model based on empirical dataset only

bootstrap

Prediction of model based on means of the loadings across the bootstrap replicate samples

proportions

Proportions of models suggested across bootstraps

omnibus

An omnibus prediction based on a consensus of empirical, bootstrap, and bootstrap proportions prediction. A consensus corresponds to any combination of two predictions returning the same prediction

References

Christensen, A. P., & Golino, H. (2020). On the equivalency of factor and network loadings. PsyArXiv. doi:10.31234/osf.io/xakez

Examples

Run this code
# NOT RUN {
# Compute LCT
## Network model
LCT(data = wmt2[,7:24])$omnibus

## Factor model
LCT(data = NetworkToolbox::neoOpen)$omnibus
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab