From 3aa3aea2b0102d5641575816a615f4fff361a314 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 5 Jan 2022 23:09:31 +0100 Subject: [PATCH] gnu: Add r-pmcmrplus. * gnu/packages/cran.scm (r-pmcmrplus): New variable. --- gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 679a050f56..920026c34b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19731,6 +19731,35 @@ (define-public r-desolve to ODEs by numerical differencing.") (license license:gpl2+))) +(define-public r-pmcmrplus + (package + (name "r-pmcmrplus") + (version "1.9.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "PMCMRplus" version)) + (sha256 + (base32 "00sgk4c7vpmbfifrsbqd5gh7hwdpm8kymlpnnrdzlhvkymhbmfkn")))) + (properties `((upstream-name . "PMCMRplus"))) + (build-system r-build-system) + (inputs (list gmp)) + (propagated-inputs + (list r-bwstest + r-gmp + r-ksamples + r-mass + r-multcompview + r-mvtnorm + r-rmpfr + r-suppdists)) + (native-inputs (list gfortran r-knitr)) + (home-page "https://cran.r-project.org/package=PMCMRplus") + (synopsis "Calculate pairwise multiple comparisons of mean rank sums extended") + (description + "This package provides multiple pairwise tests.") + (license license:gpl3+))) + (define-public r-pracma (package (name "r-pracma")