Description Usage Arguments Value Examples
Create lavaan model syntax from matrix coefficients
1 2 3 4 5 | matrix2lavaan(
measurement_model = NULL,
structural_model = NULL,
covariances = NULL
)
|
measurement_model |
A matrix or data.frame with measurement model loadings. Column names are latent variables. Row names or the first column of a data.frame are indicator variables. |
structural_model |
A matrix or data.frame with structural model coefficients (i.e., regressions). Column names are "causal" variables. Row names or the first column of a data.frame are "effect" variables. |
covariances |
A matrix or data.frame with model covariances. Column names must match the row names. If a data.frame, row variable names can be specified in the first column. |
a character string with lavaan syntax
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | library(simstandard)
# Specifying the measurement model:
# For a data.frame, the column names are latent variables,
# and the indicators can be specified as rownames.
m <- data.frame(X = c(0.7,0.8,0,0),
Y = c(0,0,0.8,0.9))
rownames(m) <- c("A", "B", "C", "D")
# Indicator variables can also be specified
# as the first column variable
# with subsequent column names as latent variables
m <- data.frame(Indicators = c("A", "B", "C", "D"),
X = c(0.7,0.8,0,0),
Y = c(0,0,0.8,0.9))
# Alternately, a matrix can be used:
m <- matrix(c(0.7,0.8,0,0,
0,0,0.8,0.9),
ncol = 2,
dimnames = list(c("A", "B", "C", "D"),
c("X", "Y")))
# Specifying the structural coefficients:
# The regression coefficients of the structural model can be
# specified as either a data.frame or a matrix. Column names
# are the predictors and row names are the criterion variables.
# With a data.frame, criterion variables can alternataly be
# specified with as the first column.
s <- matrix(0.5, nrow = 1, ncol = 1, dimnames = list("Y", "X"))
# The covariance matrix must be symmetric. Can also be specified
# as a data. frame.
Sigma <- matrix(c(1, 0.3,
0.3, 1),
nrow = 2,
ncol = 2,
dimnames = list(c("B","C"),
c("B","C")) )
model <- matrix2lavaan(measurement_model = m,
structural_model = s,
covariances = Sigma)
cat(model)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.