From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54894) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhN-0007hN-My for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhM-000060-K9 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36917) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhM-00005Q-Fu for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhM-0008EO-Dg for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:04 -0500 Subject: [bug#39416] [PATCH 04/34] gnu: Add package r-proxyc Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:55:56 +0100 Message-Id: <20200204135626.28261-4-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-proxyc): New variable. --- gnu/packages/cran.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9ab1d4ac84..9028ff310f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19342,3 +19342,33 @@ ARIMA modelling.") "This is Xiaobei's miscellaneous classes and functions useful when developing R packages, particularly for 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 + "Computes Proximity in Large Sparse Matrices") + (description + "Computes proximity between rows or columns of large matrices efficiently +in C++. 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))) -- 2.20.1