diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-05-28 12:07:25 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-05-28 23:19:04 +0200 |
commit | 1445f2c508a9b6d2e04dd8ce05a76b7ac7bed970 (patch) | |
tree | 478f9253f7623bb800153ea1ac2520f25134f4e3 | |
parent | 39dab63790686558a1a69e75aa4bd6f1c1ea19c4 (diff) |
gnu: Add r-rcppml.
* gnu/packages/cran.scm (r-rcppml): New variable.
-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 ba3aedbdef..61a1b055b9 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3854,6 +3854,27 @@ and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see @code{citation(\"Rcpp\")} for details on these last two.") (license license:gpl2+))) +(define-public r-rcppml + (package + (name "r-rcppml") + (version "0.3.7") + (source + (origin + (method url-fetch) + (uri (cran-uri "RcppML" version)) + (sha256 + (base32 "1ih8i7i6m221iw227mnl3rvnaw2l53h8fpnc4f8yn9sm10anap1j")))) + (properties `((upstream-name . "RcppML"))) + (build-system r-build-system) + (propagated-inputs (list r-matrix r-rcpp r-rcppeigen)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/zdebruine/RcppML") + (synopsis "Rcpp machine learning library") + (description + "This package provides fast machine learning algorithms including matrix +factorization and divisive clustering for large sparse and dense matrices.") + (license license:gpl2+))) + (define-public r-rcppthread (package (name "r-rcppthread") |