print.eirm: Printing Estimated Parameters for Explanatory IRT Models

Description Usage Arguments Value Examples

View source: R/print.eirm.R

Description

This generic function prints estimated parameters from an eirm object returned from the eirm function.

Usage

1
2
## S3 method for class 'eirm'
print(x, difficulty = FALSE, ...)

Arguments

x

An object returned from the eirm function.

difficulty

Whether difficulty should be used instead of easiness (default: FALSE)

...

Other print-related arguments.

Value

Estimated parameters from an eirm object.

Examples

1
2
3
4
data("VerbAgg")
mod0 <- eirm(formula = "r2 ~ -1 + situ + btype + (1|id)", data = VerbAgg)
print(mod0) # or, just mod0
print(mod0, difficulty = TRUE)

eirm documentation built on Oct. 25, 2021, 9:11 a.m.