diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-26 18:10:15 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-03 16:59:50 +0100 |
commit | 174722e90665a7f9940a13d9ff7612eec918dd04 (patch) | |
tree | d0b6410c38be999a355d9c34cdf256635263d656 /gnu/packages/cran.scm | |
parent | b578813187fc8c758550cb9157d819475532c0ca (diff) | |
download | guix-174722e90665a7f9940a13d9ff7612eec918dd04.tar.gz guix-174722e90665a7f9940a13d9ff7612eec918dd04.zip |
gnu: Add r-mirt.
* gnu/packages/cran.scm (r-mirt): New variable.
Change-Id: I2c4155632c0df6cc293e14470acbb7974e4511db
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4862f6f0f9..d418c3c787 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7817,6 +7817,47 @@ work well on small screens.") so-called readr first edition parsing engine, now superseded by vroom.") (license license:expat))) +(define-public r-mirt + (package + (name "r-mirt") + (version "1.43") + (source + (origin + (method url-fetch) + (uri (cran-uri "mirt" version)) + (sha256 + (base32 "18lqlpcw16bs9qkxdzgbhp7r1mgihkn5798amall341bpym8y1lc")))) + (properties `((upstream-name . "mirt"))) + (build-system r-build-system) + (propagated-inputs (list r-dcurver + r-deriv + r-gparotation + r-gridextra + r-lattice + r-matrix + r-mgcv + r-pbapply + r-rcpp + r-rcpparmadillo + r-simdesign + r-vegan)) + (native-inputs (list r-knitr)) + (home-page "https://philchalmers.github.io/mirt/") + (synopsis "Multidimensional item response theory") + (description + "This is a package for the analysis of discrete response data using +unidimensional and multidimensional item analysis models under the Item +Response Theory paradigm (Chalmers (2012) <doi:10.18637/jss.v048.i06>). +Exploratory and confirmatory item factor analysis models are estimated with +quadrature (EM) or stochastic (MHRM) methods. Confirmatory bi-factor and +two-tier models are available for modeling item testlets using dimension +reduction EM algorithms, while multiple group analyses and mixed effects +designs are included for detecting differential item, bundle, and test +functioning, and for modeling item and person covariates. Finally, latent +class models such as the DINA, DINO, multidimensional latent class, mixture +IRT models, and zero-inflated response models are supported.") + (license license:gpl3+))) + (define-public r-feather (package (name "r-feather") |