gnu: Add r-dalex.

* gnu/packages/cran.scm (r-dalex): New variable.
master
Ricardo Wurmus 2019-05-10 12:48:31 +02:00
parent 4d06ef4b71
commit 5bea832f72
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 26 additions and 0 deletions

View File

@ -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+)))