diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2022-02-18 13:40:02 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2022-02-21 10:41:25 +0100 |
commit | 806214261313ddfdc0682c361c316888678592c2 (patch) | |
tree | 120a169a32f5ca9709a5b4c1d967cd5ff0a83465 | |
parent | 516c9f486978d76f0c6f3365bbda1c622a542a69 (diff) | |
download | guix-806214261313ddfdc0682c361c316888678592c2.tar.gz guix-806214261313ddfdc0682c361c316888678592c2.zip |
gnu: Add r-binom.
* gnu/packages/statistics.scm (r-binom): New variable.
-rw-r--r-- | gnu/packages/statistics.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 1351ed7713..8c354d9363 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -6962,3 +6962,22 @@ the presence of variance components/nonparametric terms for models fit with @code{nlme::lme()}, @code{lme4::lmer()}, @code{lmeTest::lmer()}, @code{gamm4::gamm4()}, @code{mgcv::gamm()} and @code{SemiPar::spm()}.") (license (list license:gpl2+ license:gpl3+)))) + +(define-public r-binom + (package + (name "r-binom") + (version "1.1-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "binom" version)) + (sha256 + (base32 "0mjj92dqf5q69jxzqya4izb1mly3mkydbnmlm4wb3zqqg82a324c")))) + (properties `((upstream-name . "binom"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/package=binom") + (synopsis "Binomial Confidence Intervals For Several Parameterizations") + (description + "Constructs confidence intervals on the probability of success in a binomial +experiment via several parameterizations") + (license (list license:gpl2+ license:gpl3+)))) |