guix-commits
[Top][All Lists]
Advanced

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

03/14: gnu: Add r-dalex.


From: guix-commits
Subject: 03/14: gnu: Add r-dalex.
Date: Fri, 10 May 2019 07:34:34 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 5bea832f72b2205af57c716775552490f23b4914
Author: Ricardo Wurmus <address@hidden>
Date:   Fri May 10 12:48:31 2019 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 3c4ceca..e91642a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -14264,3 +14264,29 @@ engine (Salmon et al., 2011) as provided by the 
package @code{sitmo}.")
     ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
     ;; whole is distributed under the terms of the AGPL 3.
     (license license:agpl3)))
+
+(define-public r-dalex
+  (package
+    (name "r-dalex")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "DALEX" version))
+       (sha256
+        (base32
+         "13l435l88r6wqaypxbf8jszc8wv5la1c3ahcxif2jcqlj4b1dks6"))))
+    (properties `((upstream-name . "DALEX")))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
+    (home-page "https://pbiecek.github.io/DALEX/";)
+    (synopsis "Descriptive machine learning explanations")
+    (description
+     "Machine Learning models are widely used and have various applications in
+classification or regression.  Models created with boosting, bagging, stacking
+or similar techniques are often used due to their high performance, but such
+black-box models usually lack interpretability.  The DALEX package contains
+various explainers that help to understand the link between input variables
+and model output.")
+    ;; Any version of the GPL
+    (license license:gpl3+)))



reply via email to

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