diff options
author | Navid Afkhami <navid.afkhami@mdc-berlin.de> | 2024-10-30 19:01:55 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-11-01 12:14:24 +0100 |
commit | 325f46b5789488fe013aab62cbe0ee90103ed097 (patch) | |
tree | 69d186bf471b43cfc06f6b1299ffaf6b42a898a7 /gnu | |
parent | b223d04784936e0e6d0f5ced7ea60cfb4784d8cd (diff) | |
download | guix-325f46b5789488fe013aab62cbe0ee90103ed097.tar guix-325f46b5789488fe013aab62cbe0ee90103ed097.tar.gz |
gnu: Add r-coop.
* gnu/packages/cran.scm (r-coop): New variable.
Change-Id: Idb79f51b518a16bf6410cc4239a69ee654c6c95d
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 94491228a1..cdb54913f0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -40881,6 +40881,29 @@ importance.") "Various utilities for evaluating continued fractions.") (license license:gpl2))) +(define-public r-coop + (package + (name "r-coop") + (version "0.6-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "coop" version)) + (sha256 + (base32 "0ww99ssgawsgn6rqy838wbx6iirzdrzyxirvz084ih8j50blx420")))) + (properties `((upstream-name . "coop"))) + (build-system r-build-system) + (home-page "https://github.com/wrathematics/coop") + (synopsis + "Fast covariance, correlation, and cosine similarity computations") + (description + "R-coop offers implementations of covariance, correlation and cosine +similarity. The implementations are fast and memory-efficient and their use +is resolved automatically based on the input data, handled by R's S3 methods. +Full descriptions of the algorithms and benchmarks are available in the +package vignettes.") + (license license:bsd-2))) + (define-public r-elliptic (package (name "r-elliptic") |