SimVector
object that save free parameters and starting values, as well as fixed values. This will be used for model specification later, such as for factor mean vector or measurement error variance vector.simVector(free = NULL, value = NULL)
NA
to specify free parameters. Use number as fixed value (including zero). If this argument is not specified, the information from the value
argument is used. The positions in the value
as.numeric
or as.character
format) or the name of distribution object V
SimVector
object that will be used for model specification later.factor.mean <- rep(NA, 4)
AL <- simVector(factor.mean, 0)
n02 <- simNorm(0, 0.2)
factor.start <- rep("n02", 4)
KA <- simVector(factor.mean, factor.start)
start <- c(2, 0, 0, 1)
VE <- simVector(value=start)
Run the code above in your browser using DataLab