Learn R Programming

mixRasch (version 1.1)

getEstDetails: Convenience function returning information about the estimation.

Description

This function extracts information about the estimation procedure conducted using the mixRasch procedure.

Usage

getEstDetails(raschResult, camelCase=TRUE)

Arguments

raschResult
The result of a mixRasch analysis.
camelCase
If TRUE, the variables returned are renamed to conform to camelCase style naming conventions.

Value

model
Reports which model was estimated.
n.c
Number of latent classes.
iter
The number of completed iterations.
max.change
The largest model parameter change in each class in the last iteration of the estimation.
converge.flag
Indicates if convergence was reached.
run.time
Reports time elapsed during estimation.

Details

The function only requires a mixRasch result. The camelCase option is available so results can be exported to other software that might not supprt some types of R names (e.g., names with "."s in them).

Examples

Run this code

# Example data included with mixRasch
data(SimMix)

test1 <- mixRasch(SimMix,1,50, conv.crit=.0001, n.c=1)
getEstDetails(test1)

Run the code above in your browser using DataLab