guix-commits
[Top][All Lists]
Advanced

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

27/28: gnu: Add r-mlearning.


From: guix-commits
Subject: 27/28: gnu: Add r-mlearning.
Date: Thu, 26 Aug 2021 05:26:15 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 9d56788e1c43266f2f35ce6703d684d464e1582d
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Aug 26 11:24:25 2021 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 890bf64..8b0feff 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -31026,3 +31026,30 @@ to be treated much like environments and lists are 
already used in R.  These
 utilities are provided to encourage interactive and exploratory analysis on
 large datasets.")
     (license license:gpl2+)))
+
+(define-public r-mlearning
+  (package
+    (name "r-mlearning")
+    (version "1.0-0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "mlearning" version))
+       (sha256
+        (base32
+         "0r8xfaxw83s2r27b8x5qd0k4r5ayxpkafzn9b1a0jvsr87i6520r"))))
+    (properties `((upstream-name . "mlearning")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-class" ,r-class)
+       ("r-e1071" ,r-e1071)
+       ("r-ipred" ,r-ipred)
+       ("r-mass" ,r-mass)
+       ("r-nnet" ,r-nnet)
+       ("r-randomforest" ,r-randomforest)))
+    (home-page "http://www.sciviews.org/zooimage";)
+    (synopsis "Machine learning algorithms with unified interface")
+    (description
+     "This package provides a unified interface to various machine learning
+algorithms.  Confusion matrices are provided too.")
+    (license license:gpl2+)))



reply via email to

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