guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 883e7407435edb8f3a3cdd00b807ef38fdf8d7e9
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:43:10 2026 +0100
gnu: r-statmod: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-statmod): Move from here...
* gnu/packages/cran.scm (r-statmod): ...to here.
Change-Id: I85e1af6c05d243b0f29cb5befc5f871c36e7e78c
---
gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
gnu/packages/statistics.scm | 26 --------------------------
2 files changed, 25 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 05244fdf7b..871720efa5 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10571,6 +10571,31 @@ configured to set uppercase/lowercase for keywords,
remove unnecessary spaces,
or omit optional keywords.")
(license license:agpl3)))
+(define-public r-statmod
+ (package
+ (name "r-statmod")
+ (version "1.5.1")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "statmod" version))
+ (sha256
+ (base32
+ "15qk57r8sdzzbs41c0k49m4clay32b521wvjbpjpaaim2y0kh14g"))))
+ (build-system r-build-system)
+ (home-page "https://cran.r-project.org/web/packages/statmod")
+ (native-inputs (list gfortran))
+ (synopsis "Statistical modeling")
+ (description
+ "This package provides a collection of algorithms and functions to aid
+statistical modeling. It includes growth curve comparisons, limiting dilution
+analysis (aka ELDA), mixed linear models, heteroscedastic regression,
+inverse-Gaussian probability calculations, Gauss quadrature and a secure
+convergence algorithm for nonlinear models. It also includes advanced
+generalized linear model functions that implement secure convergence,
+dispersion modeling and Tweedie power-law families.")
+ ;; Statmod is distributed under either license
+ (license (list license:gpl2 license:gpl3))))
+
(define-public r-stringi
(package
(name "r-stringi")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index def4f7a60c..eb758c1338 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1819,32 +1819,6 @@ following problems:
@end enumerate\n")
(license license:gpl3+)))
-(define-public r-statmod
- (package
- (name "r-statmod")
- (version "1.5.1")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "statmod" version))
- (sha256
- (base32
- "15qk57r8sdzzbs41c0k49m4clay32b521wvjbpjpaaim2y0kh14g"))))
- (build-system r-build-system)
- (home-page "https://cran.r-project.org/web/packages/statmod")
- (native-inputs
- (list gfortran))
- (synopsis "Statistical modeling")
- (description
- "This package provides a collection of algorithms and functions to aid
-statistical modeling. It includes growth curve comparisons, limiting dilution
-analysis (aka ELDA), mixed linear models, heteroscedastic regression,
-inverse-Gaussian probability calculations, Gauss quadrature and a secure
-convergence algorithm for nonlinear models. It also includes advanced
-generalized linear model functions that implement secure convergence,
-dispersion modeling and Tweedie power-law families.")
- ;; Statmod is distributed under either license
- (license (list license:gpl2 license:gpl3))))
-
(define-public r-trimcluster
(package
(name "r-trimcluster")