R Under development (unstable) (2024-09-18 r87177 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > # ################################################################ > # # Example 1 # > # # The GDI method to validate Q-matrix # > # ################################################################ > # set.seed(123) > # > # library(Qval) > # > # ## generate Q-matrix and data > # K <- 5 > # I <- 20 > # example.Q <- sim.Q(K, I) > # IQ <- list( > # P0 = runif(I, 0.0, 0.2), > # P1 = runif(I, 0.8, 1.0) > # ) > # example.data <- sim.data(Q = example.Q, N = 500, IQ = IQ, model = "GDINA", distribute = "horder") > # > # ## simulate random mis-specifications > # example.MQ <- sim.MQ(example.Q, 0.1) > # > # ## using MMLE/EM to fit CDM model first > # example.CDM.obj <- CDM(example.data$dat, example.MQ) > # > # ## using the fitted CDM.obj to avoid extra parameter estimation. > # Q.GDI.obj <- validation(example.data$dat, example.MQ, example.CDM.obj, method = "GDI") > # > # > # ## also can validate the Q-matrix directly > # Q.GDI.obj <- validation(example.data$dat, example.MQ) > # > # ## item level iteration > # Q.GDI.obj <- validation(example.data$dat, example.MQ, method = "GDI", iter.level = "item", maxitr = 150) > # > # ## search method > # Q.GDI.obj <- validation(example.data$dat, example.MQ, method = "GDI", search.method = "ESA") > # > # ## cut-off point > # Q.GDI.obj <- validation(example.data$dat, example.MQ, method = "GDI", eps = 0.90) > # > # ## check QRR > # print(zQRR(example.Q, Q.GDI.obj$Q.sug)) > # > > proc.time() user system elapsed 0.14 0.07 0.20