diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-25 16:28:38 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-25 16:28:38 +0100 |
commit | 7166b77adc51072a77911e4734ccfb1ac0590485 (patch) | |
tree | 89095ca6dbef6fcb46e1a712bde64347924726be /gnu | |
parent | 6bdce94f43c6500d680413bb912adeee7db98167 (diff) | |
download | guix-7166b77adc51072a77911e4734ccfb1ac0590485.tar.gz guix-7166b77adc51072a77911e4734ccfb1ac0590485.zip |
gnu: Add r-sampling.
* gnu/packages/cran.scm (r-sampling): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index f72dc0dc95..4ba686e90e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -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+))) |