getEstDetails: Convenience function returning information about the...

Description Usage Arguments Details Value Author(s) Examples

Description

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

Usage

1
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.

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).

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.

Author(s)

John T. Willse

Examples

1
2
3
4
5
# Example data included with mixRasch
data(SimMix)

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

mixRasch documentation built on May 2, 2019, 1:09 p.m.