print.eirm {eirm} | R Documentation |
Printing Estimated Parameters for Explanatory IRT Models
Description
This generic function prints estimated parameters from an eirm object returned
from the eirm
function.
Usage
## S3 method for class 'eirm'
print(x, difficulty = FALSE, ...)
Arguments
x |
An object returned from the |
difficulty |
Whether difficulty should be used instead of easiness (default: FALSE) |
... |
Other print-related arguments. |
Value
Estimated parameters from an eirm object.
Examples
data("VerbAgg")
mod0 <- eirm(formula = "r2 ~ -1 + situ + btype + (1|id)", data = VerbAgg)
print(mod0) # or, just mod0
print(mod0, difficulty = TRUE)
[Package eirm version 0.5 Index]