3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add python-baycomp.

* gnu/packages/python-science.scm (python-baycomp): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Vinicius Monego 2020-11-22 00:05:25 -03:00 committed by Nicolas Goaziou
parent 77a98bcd6e
commit 9e7382f865
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -439,6 +439,32 @@ doing practical, real world data analysis in Python.")
written in C.") written in C.")
(license license:bsd-2))) (license license:bsd-2)))
(define-public python-baycomp
(package
(name "python-baycomp")
(version "1.0.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "baycomp" version))
(sha256
(base32 "1c1354a7b3g8slychjgyjxqdm8z40z9kviyl9n4g9kfpdg0p4d64"))))
(build-system python-build-system)
(propagated-inputs
`(("python-matplotlib" ,python-matplotlib)
("python-numpy" ,python-numpy)
("python-scipy" ,python-scipy)))
(home-page "https://github.com/janezd/baycomp")
(synopsis "Library for comparison of Bayesian classifiers")
(description
"Baycomp is a library for Bayesian comparison of classifiers. Functions
in the library compare two classifiers on one or on multiple data sets. They
compute three probabilities: the probability that the first classifier has
higher scores than the second, the probability that differences are within the
region of practical equivalence (rope), or that the second classifier has
higher scores.")
(license license:expat)))
(define-public python-xarray (define-public python-xarray
(package (package
(name "python-xarray") (name "python-xarray")