This package is for someone who is familiar with confirmatory factor
analysis (CFA), but not with item response theory (IRT). Although CFA is
differently developed as opposed to IRT, both methods provide
measurement tools to validate the structure of an inventory in the scale
development. However, CFA is underutilized, mainly because applied
researchers tend not to recognize that CFA and IRT are equivalent with
certain types of indicators, such as graded response. To address this
underutilization, this package can take and provide lavaan
syntax to conduct graded response model under the confirmatory factor
analysis framework.
Simulation and analysis of graded response data with different types of estimator can be done with this package. Also, interactive shiny application is provided with graphics for characteristic and information curves.
Install the latest release from CRAN:
::install_github("sooyongl/GRShiny") devtools
The documentation is available at here.
<- genIRTpar(nitem = 10, ncat = 3, nfac = 1) item_pars
<- genTheta(nsample = 500, nfac = 1) true_theta
<- genData(eta = true_theta, ipar = item_pars) grm_dt
<- genLavSyn(dat = grm_dt, nfac = 1) lav_syn
runGRM(dat = grm_dt, lav.syntax = lav_syn, estimator = "WL")
runGRM(dat = grm_dt, lav.syntax = lav_syn, estimator = "ML")
startGRshiny()