diff options
author | Afkhami, Navid <Navid.Afkhami@mdc-berlin.de> | 2023-11-02 17:13:50 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-11-02 18:34:09 +0100 |
commit | 28ebbe2be8829a4767b9789c6353ad5e826d1164 (patch) | |
tree | 4331139268e0566864a77e9716015f6c3c8347fe /gnu | |
parent | 64dbce8381f2f81826a8125e5857e4f8248f1579 (diff) | |
download | guix-28ebbe2be8829a4767b9789c6353ad5e826d1164.tar.gz |
gnu: Add r-matrixtests.
* gnu/packages/cran.scm (r-matrixtests): New variable. Change-Id: I62f7bd760fc8603425906c304ef4293da1c0cf61 Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu')
-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 2cac3a75c0..30f28f6adc 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3125,6 +3125,27 @@ functions, including @code{sort}, @code{order}, and @code{match}. The functions are simplified but can be faster or have other advantages.") (license license:gpl3))) +(define-public r-matrixtests + (package + (name "r-matrixtests") + (version "0.2.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "matrixTests" version)) + (sha256 + (base32 "0d7i00cxzszfdnjm8q5b72ildic8nig6fbw7rba6acdnllpp7sza")))) + (properties `((upstream-name . "matrixTests"))) + (build-system r-build-system) + (propagated-inputs (list r-matrixstats)) + (home-page "https://github.com/karoliskoncevicius/matrixTests") + (synopsis "Statistical hypothesis tests on rows and columns of matrices") + (description + "This package offers quick statistical hypothesis testing for matrix +rows/columns. The main goals are speed through vectorization, detailed and +user-friendly output, and compatibility with tests implemented in R.") + (license license:gpl2))) + (define-public r-matrix-utils (package (name "r-matrix-utils") |