gnu: Add r-sampling.

* gnu/packages/cran.scm (r-sampling): New variable.
master
Ricardo Wurmus 2019-03-25 16:28:38 +01:00
parent 6bdce94f43
commit 7166b77adc
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 21 additions and 0 deletions

View File

@ -12824,3 +12824,24 @@ functions are developed primarily for data collected in cohort or
cross-sectional studies. They can accommodate uncertain haplotype phase and
handle missing genotypes at some SNPs.")
(license license:gpl2)))
(define-public r-sampling
(package
(name "r-sampling")
(version "2.8")
(source
(origin
(method url-fetch)
(uri (cran-uri "sampling" version))
(sha256
(base32
"06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
(build-system r-build-system)
(propagated-inputs
`(("r-lpsolve" ,r-lpsolve)
("r-mass" ,r-mass)))
(home-page "https://cran.r-project.org/web/packages/sampling/")
(synopsis "Survey sampling")
(description
"This package provides functions for drawing and calibrating samples.")
(license license:gpl2+)))