Learn R Programming

simsem (version 0.5-16)

coef: Extract parameter estimates from a simulation result

Description

Extract parameter estimates from a simulation result. This function is similar to the inspect method with what = "coef".

Value

Parameter estimates of each replication

Arguments

object

The target SimResult object

improper

Specify whether to include the information from the replications with improper solutions

nonconverged

Specify whether to include the information from the nonconvergent replications

Author

Sunthud Pornprasertmanit (psunthud@gmail.com)

See Also

SimResult for the object input

Examples

Run this code
if (FALSE) {
loading <- matrix(0, 6, 2)
loading[1:3, 1] <- NA
loading[4:6, 2] <- NA
LY <- bind(loading, 0.7)

latent.cor <- matrix(NA, 2, 2)
diag(latent.cor) <- 1
RPS <- binds(latent.cor, 0.5)

RTE <- binds(diag(6))

VY <- bind(rep(NA,6),2)

CFA.Model <- model(LY = LY, RPS = RPS, RTE = RTE, modelType = "CFA")

# In reality, more than 5 replications are needed.
Output <- sim(5, CFA.Model, n=200)
coef(Output)
coef(Output, improper = TRUE)
}

Run the code above in your browser using DataLab