glance.SingleGroupClass | R Documentation |
This function uses mirt's extract.mirt to pull out measures, so see that function for other measures you could get.
## S3 method for class 'SingleGroupClass' glance(x, ...)
x |
mirt model (often returned by mirt() function) |
... |
ignored |
tibble with columns for TODO
# We'll use examples from the mirt library (see ?mirt) library(mirt) #load mirt library LSAT section 7 data data <- expand.table(LSAT7) # one-factor model mod1 <- mirt(data, 1) glance(mod1) # two-factor model mod2 <- mirt(data, 2) glance(mod2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.