Learn R Programming

D3mirt (version 2.0.4)

summary.modid: Summary Method for S3 Objects of Class modid

Description

The summary method for the modid() function.

Usage

# S3 method for modid
summary(object, ..., digits = 4)

Value

Model identification items (one less than the number of factors), factor loadings and absolute sum score for model identification items, squared factor loadings, and factor loadings for all items.

Arguments

object

A S3 object of class modid.

...

Additional arguments.

digits

The number of digits shown per estimate. The default is digits = 4.

Author

Erik Forsberg

Examples

Run this code
if (FALSE) {
# Load data
data("anes0809offwaves")
x <- anes0809offwaves
x <- x[,3:22] # Remove columns for age and gender

# Identify the DMIRT model
id <- modid(x)

# Call to summary
summary(id)

# Call to summary rounded off to 2 digits
summary(id, digits = 2)
}

Run the code above in your browser using DataLab