diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-05-13 16:37:46 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-05-13 17:01:01 +0200 |
commit | 5fde1bc527a99c45a86f1a179abff8a6b7436f2d (patch) | |
tree | 9b6b14aec47418ccd2c065b037ac8aa1be302a9d | |
parent | 6e8b3fd23808efd30749e3c70e5d7f5e46dbfab4 (diff) |
gnu: Add r-psychometric.
* gnu/packages/cran.scm (r-psychometric): New variable.
Change-Id: Ifcca90bd90a4f7b8207692e01b535621e548a87e
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 48cd455cb9..811deff9a4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -14598,6 +14598,27 @@ print, summary, plot, update, etc. processes. Most of its code is based on the @code{psutil} Python package.") (license license:bsd-3))) +(define-public r-psychometric + (package + (name "r-psychometric") + (version "2.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "psychometric" version)) + (sha256 + (base32 "1mlggzw80pb7kfykva1s4ic726l8dckrgik2519njh32ycvk9x1s")))) + (properties `((upstream-name . "psychometric"))) + (build-system r-build-system) + (propagated-inputs (list r-dplyr r-multilevel r-nlme r-purrr)) + (home-page "https://cran.r-project.org/package=psychometric") + (synopsis "Applied psychometric theory") + (description + "This package contains functions useful for correlation theory, +meta-analysis (validity-generalization), reliability, item analysis, +inter-rater reliability, and classical utility.") + (license license:gpl2+))) + (define-public r-pkgbuild (package (name "r-pkgbuild") |