gnu: Add r-poibin.

* gnu/packages/cran.scm (r-poibin): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-17 19:18:11 +01:00
parent 595036d9f9
commit 5828dd030b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -18810,3 +18810,26 @@ (define-public r-knn-covertree
cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
Langford (2006) @url{doi:10.1145/1143844.1143857}.")
(license license:agpl3+)))
(define-public r-poibin
(package
(name "r-poibin")
(version "1.4")
(source
(origin
(method url-fetch)
(uri (cran-uri "poibin" version))
(sha256
(base32
"1rllgmk7yanb5amysl33kmi11lx86q5kqblyb8qqb3ckj2w4jhm2"))))
(properties `((upstream-name . "poibin")))
(build-system r-build-system)
(home-page "https://cran.r-project.org/web/packages/poibin/")
(synopsis "Poisson binomial distribution")
(description
"This package provides an implementation of both the exact and
approximation methods for computing the @dfn{cumulative distribution
function} (CDF) of the Poisson binomial distribution. It also provides the
@dfn{probability mass function} (PMF), quantile function, and random number
generation for the Poisson binomial distribution.")
(license license:gpl2)))