The CSEM package provides functions to compute various
methods of Conditional Standard Error of Measurement (CSEM),
including:
Additionally, the package includes tools for: - Splitting test items
into halves (check.split) - Computing reliability estimates
(check.alpha, check.angoff) - Testing the
distribution of split scores (check.distribution) -
Visualizing results (check.plot)
To install and load the package, run:
```r # Install from GitHub (if applicable) devtools::install_github(“cmerinos/CSEM”)
library(CSEM)
set.seed(123) dhalf1 <- matrix(sample(1:5, 30, replace = TRUE), nrow = 10) dhalf2 <- matrix(sample(1:5, 30, replace = TRUE), nrow = 10)
csemMF(half1 = dhalf1, half2 = dhalf2, data = dataset, reliability.coef = 0.9, n.items = 6, min.score.item = 0, max.score.item = 4, conf.level = .95)
csemthorndike(half1 = dhalf1, half2 = dhalf2, n.groups = 4)
check.distribution(half1 = dhalf1, half2 = dhalf2, B = 2000, conf = .95)
?CSEM help(package = “CSEM”)
Author: Cesar Merino-Soto
Maintainer: Cesar Merino-Soto sikayax@yahoo.com.ar
License: GPL-3
Of course, contributions always are welcome! If you find an issue, please report it or submit a pull request.