guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 8d7ec1557bd93d0439920c85d97707ea5c2d6c65
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:36:12 2026 +0100
gnu: r-simr: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-simr): Move from here...
* gnu/packages/cran.scm (r-simr): ...to here.
Change-Id: I2a2a5c700a1177e260fc70a512737114eb32b4f6
---
gnu/packages/cran.scm | 34 ++++++++++++++++++++++++++++++++++
gnu/packages/statistics.scm | 34 ----------------------------------
2 files changed, 34 insertions(+), 34 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 5c052abdb2..ea7f449728 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10329,6 +10329,40 @@ multiple breakpoints are allowed.")
Zurich, including many that are related to graphics.")
(license license:gpl2+)))
+(define-public r-simr
+ (package
+ (name "r-simr")
+ (version "1.0.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "simr" version))
+ (sha256
+ (base32 "14vzyncs9p10n0n9bqx1p4bxr0l3zanmvf6dppi4rjpfl1q22kzy"))))
+ (properties `((upstream-name . "simr")))
+ (build-system r-build-system)
+ (propagated-inputs
+ (list r-binom
+ r-car
+ r-iterators
+ r-lme4
+ r-lmertest
+ r-pbkrtest
+ r-plotrix
+ r-plyr
+ r-rlrsim
+ r-stringr))
+ (native-inputs (list r-knitr))
+ (home-page "https://github.com/pitakakariki/simr")
+ (synopsis
+ "Power analysis for generalized linear mixed models by simulation")
+ (description
+ "This package lets you calculate power for generalized linear mixed
+models, using simulation. It was designed to work with models fit using the
+@code{lme4} package. The package is described in
+@url{doi:10.1111/2041-210X.12504, Green and MacLeod (2016)}.")
+ (license license:gpl2+)))
+
(define-public r-skat
(package
(name "r-skat")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 58a9e732cb..65128848f0 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2582,40 +2582,6 @@ files into/from Pandas DataFrames. It is a wrapper
around the C library
@code{readstat}.")
(license license:asl2.0)))
-(define-public r-simr
- (package
- (name "r-simr")
- (version "1.0.8")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "simr" version))
- (sha256
- (base32 "14vzyncs9p10n0n9bqx1p4bxr0l3zanmvf6dppi4rjpfl1q22kzy"))))
- (properties `((upstream-name . "simr")))
- (build-system r-build-system)
- (propagated-inputs
- (list r-binom
- r-car
- r-iterators
- r-lme4
- r-lmertest
- r-pbkrtest
- r-plotrix
- r-plyr
- r-rlrsim
- r-stringr))
- (native-inputs (list r-knitr))
- (home-page "https://github.com/pitakakariki/simr")
- (synopsis
- "Power analysis for generalized linear mixed models by simulation")
- (description
- "This package lets you calculate power for generalized linear mixed
-models, using simulation. It was designed to work with models fit using the
-@code{lme4} package. The package is described in
-@url{doi:10.1111/2041-210X.12504, Green and MacLeod (2016)}.")
- (license license:gpl2+)))
-
(define-public r-mixedpower
;; This commit contains fixes for R>=4.2 and contains new features. A
;; newer release does not exist.