slcafit
ObjectPrints the estimated parameters of an slca
model using an slcafit
object.
param(object, ...)# S3 method for slcafit
param(
object, type = c("probs", "logit"),
se = FALSE, index = FALSE, ...
)
A list
containing the requested estimated parameters or their standard errors (if se = TRUE
). The components of the list include:
Membership probabilities for the root latent variable.
Conditional probabilities between latent class variables, represented with uppercase letters to account for measurement invariance.
Item response probabilities for each measurement model, represented with lowercase letters to account for measurement invariance.
an object of class slcafit
.
additional arguments passed to other methods.
a character string specifying the format in which the estimated parameters should be displayed. The options are "probs"
for probability format or "logit"
for log-odds (logit) format. The default setting is "probs"
.
a logical value indicating whether to display standard errors (TRUE
) or parameter estimates (FALSE
). The default is FALSE
.
a logical value indicating whether to include (TRUE
) or exclude (FALSE
) the indices of the estimated parameters in the output. The default is FALSE
.