View source: R/covmat.from.cfm.R
covmat.from.cfm | R Documentation |
Function calculates a covariance matrix using the specified Lambda
and Psi.Square
values from a confirmatory
factor model approach (McDonald, 1999).
covmat.from.cfm(Lambda, Psi.Square, tol.det = 1e-05)
Lambda |
the vector of population factor loadings |
Psi.Square |
the vector of population error variances |
tol.det |
the specified tolerance for the determinant |
Population.Covariance |
the population covariance matrix |
True.Covariance |
the true covariance matrix |
True.Covariance |
the error covariance matrix |
Ken Kelley (University of Notre Dame; KKelley@ND.Edu); Leann Terry (Indiana University; ljterry@Indiana.Edu)
McDonald, R. P. (1999). Test theory: A unified approach. Mahwah, NJ: Erlbaum.
CFA.1
;sem
# General Congeneric
# covmat.from.cfm(Lambda=c(.8, .9, .6, .8), Psi.Square=c(.6, .2, .1, .3), tol.det=.00001)
# True-score equivalent
# covmat.from.cfm(Lambda=c(.8, .8, .8, .8), Psi.Square=c(.6, .2, .1, .3), tol.det=.00001)
# Parallel
# covmat.from.cfm(Lambda=c(.8, .8, .8, .8), Psi.Square=c(.2, .2, .2, .2), tol.det=.00001)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.