Class "SimSem"
The template containing data-generation and data-analysis specification
Objects can be created by model.
pt:Parameter table used in data analysis
dgen:Data generation template
modelType:Type of models (CFA, Path, or SEM) contained in this object
groupLab:The label of grouping variable
con:The list of defined parameters, equality constraints, or inequality constraints specified in the model
Get the summary of model specification
Patrick Miller (University of Notre Dame; pmille13@nd.edu), Sunthud Pornprasertmanit (psunthud@gmail.com)
Create an object this class by CFA, Path Analysis, or SEM model by model.
showClass("SimSem")
loading <- matrix(0, 6, 2)
loading[1:3, 1] <- NA
loading[4:6, 2] <- NA
loadingValues <- matrix(0, 6, 2)
loadingValues[1:3, 1] <- 0.7
loadingValues[4:6, 2] <- 0.7
LY <- bind(loading, loadingValues)
summary(LY)
latent.cor <- matrix(NA, 2, 2)
diag(latent.cor) <- 1
RPS <- binds(latent.cor, 0.5)
# Error Correlation Object
error.cor <- matrix(0, 6, 6)
diag(error.cor) <- 1
RTE <- binds(error.cor)
CFA.Model <- model(LY = LY, RPS = RPS, RTE = RTE, modelType="CFA")
summary(CFA.Model)Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.