1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02:00

gnu: Add r-binom.

* gnu/packages/statistics.scm (r-binom): New variable.
This commit is contained in:
Lars-Dominik Braun
2022-02-18 13:40:02 +01:00
parent 516c9f4869
commit 8062142613
+19
View File
@@ -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+))))