me
/
guix
Archived
1
0
Fork 0

gnu: Add r-nor1mix.

* gnu/packages/cran.scm (r-nor1mix): New variable.
master
Ricardo Wurmus 2019-03-13 12:43:20 +01:00
parent 30f53ec86d
commit 026dd77c63
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 21 additions and 0 deletions

View File

@ -11481,3 +11481,24 @@ negative binomial (ZINB) assumption. The package also contains miscellaneous
functions to compute density, distribution, quantile, and generate random functions to compute density, distribution, quantile, and generate random
numbers from ZIP and ZINB distributions.") numbers from ZIP and ZINB distributions.")
(license license:gpl3))) (license license:gpl3)))
(define-public r-nor1mix
(package
(name "r-nor1mix")
(version "1.2-3")
(source
(origin
(method url-fetch)
(uri (cran-uri "nor1mix" version))
(sha256
(base32
"1bvk888qml9qr7q703s7qzgm0sqfchcjdjqwqllm5vrjx0cnapj3"))))
(build-system r-build-system)
(home-page "https://cran.r-project.org/web/packages/nor1mix/")
(synopsis "Normal (1-d) mixture models")
(description
"This package provides S3 classes and methods for one-dimensional normal
mixture models, for, e.g., density estimation or clustering algorithms
research and teaching; it provides the widely used Marron-Wand densities. It
also provides tools for efficient random number generation and graphics.")
(license license:gpl2+)))