diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-01-12 10:38:37 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:26:07 +0100 |
| commit | 6a5dd96e75b281de40c8df270364e2fa74f52afd (patch) | |
| tree | 8fa9a5302010ce047f0ddbfedae6efca6ec23912 | |
| parent | ee887843731aa1e9c9add227294da2bd57411c7f (diff) | |
gnu: Add r-qvcalc.
* gnu/packages/cran.scm (r-qvcalc): New variable.
Change-Id: I3ff0497ff140364b1e77bf528844476d285543dc
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
| -rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9748f91157..42cc919b09 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -20841,6 +20841,26 @@ assignment problem} (QAP). Currently only a simulated annealing heuristic is available.") (license license:gpl3))) +(define-public r-qvcalc + (package + (name "r-qvcalc") + (version "1.0.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "qvcalc" version)) + (sha256 + (base32 "0ngvv9jr2q92cdd38x08nm81hwhcnbx9gwv7s2xsd0kflnnkqh4h")))) + (properties `((upstream-name . "qvcalc"))) + (build-system r-build-system) + (native-inputs (list r-mass r-psychotools r-survival r-testthat)) + (home-page "https://davidfirth.github.io/qvcalc/") + (synopsis "Quasi variances for factor effects in statistical models") + (description + "This package provides functions to compute quasi variances and +associated measures of approximation error.") + (license (list license:gpl2 license:gpl3)))) + (define-public r-gclus (package (name "r-gclus") |
