guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/53: gnu: Add r-proxyc.


From: guix-commits
Subject: 04/53: gnu: Add r-proxyc.
Date: Sat, 22 Feb 2020 14:46:05 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 38339c4cab9f40db7c70c15b56827f1954b4f53b
Author: Lars-Dominik Braun <address@hidden>
AuthorDate: Fri Jan 31 16:55:46 2020 +0100

    gnu: Add r-proxyc.
    
    * gnu/packages/cran.scm (r-proxyc): New variable.
---
 gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 310b80a..243f692 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -19337,3 +19337,31 @@ space models and automatic ARIMA modelling.")
 which are useful when developing R packages for @dfn{object oriented
 programming} (OOP) using R Reference Class.")
     (license license:gpl2+)))
+
+(define-public r-proxyc
+  (package
+    (name "r-proxyc")
+    (version "0.1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "proxyC" version))
+       (sha256
+        (base32
+         "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
+    (properties `((upstream-name . "proxyC")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-matrix" ,r-matrix)
+       ("r-rcpp" ,r-rcpp)
+       ("r-rcpparmadillo" ,r-rcpparmadillo)
+       ("r-rcppparallel" ,r-rcppparallel)))
+    (home-page "https://cran.r-project.org/package=proxyC";)
+    (synopsis "Compute proximity in large sparse matrices")
+    (description
+     "This package provides efficient tools to compute the proximity between
+rows or columns of large matrices.  Functions are optimised for large sparse
+matrices using the Armadillo and Intel TBB libraries.  Among several built-in
+similarity/distance measures, computation of correlation, cosine similarity
+and Euclidean distance is particularly fast.")
+    (license license:gpl3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]