summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 18:43:10 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:23 +0100
commit57d805506d1f4ece8b5a394a48d43c4e6a38a36b (patch)
tree2bc7b1ce1eae0d81e48addd0ff1711df43f80f8e
parent8861b359ed8e1c09f60ac31dbb9781778fb627c9 (diff)
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
-rw-r--r--gnu/packages/cran.scm25
-rw-r--r--gnu/packages/statistics.scm26
2 files changed, 25 insertions, 26 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index a6f6c9f6cca..14e7c7885d4 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10618,6 +10618,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 27adeffc431..33bba58e5c6 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")