guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit 6e6d4b6911cb1f293ecf92f89b3f2c124454c681
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:00:41 2026 +0100

    gnu: r-robust: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-robust): Move from here...
    * gnu/packages/cran.scm (r-robust): ...to here.
    
    Change-Id: I09cdf75bf7f0432dc6d3e91952dc0943903758ab
---
 gnu/packages/cran.scm       | 24 ++++++++++++++++++++++++
 gnu/packages/statistics.scm | 24 ------------------------
 2 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ecc55a471b..8e08b2404b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7064,6 +7064,30 @@ F. (2022) <@code{arXiv:2202.08060>}.  All algorithms run 
in quasilinear
 time.")
     (license license:gpl2+)))
 
+(define-public r-robust
+  (package
+    (name "r-robust")
+    (version "0.7-5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "robust" version))
+       (sha256
+        (base32
+         "1k0s5i9r0lyz3qsw76dd514qclggqj9k2axmgj86df81j6f2mh53"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-fit-models r-lattice r-mass r-robustbase r-rrcov))
+    (native-inputs
+     (list gfortran))
+    (home-page "https://cran.r-project.org/web/packages/robust";)
+    (synopsis "Port of the S+ \"Robust Library\"")
+    (description
+     "This package is a port of the S+ \"Robust Library\".  It provides
+methods for robust statistics, notably for robust regression and robust
+multivariate analysis.")
+    (license license:gpl2)))
+
 (define-public r-robustrankaggreg
   (package
     (name "r-robustrankaggreg")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 3bcf4d2eb8..5d4ba1b5fb 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2268,30 +2268,6 @@ regression methodology including model selections and 
multivariate statistics.")
 estimation and robust multivariate analysis with high breakdown point.")
     (license license:gpl2+)))
 
-(define-public r-robust
-  (package
-    (name "r-robust")
-    (version "0.7-5")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "robust" version))
-       (sha256
-        (base32
-         "1k0s5i9r0lyz3qsw76dd514qclggqj9k2axmgj86df81j6f2mh53"))))
-    (build-system r-build-system)
-    (propagated-inputs
-     (list r-fit-models r-lattice r-mass r-robustbase r-rrcov))
-    (native-inputs
-     (list gfortran))
-    (home-page "https://cran.r-project.org/web/packages/robust";)
-    (synopsis "Port of the S+ \"Robust Library\"")
-    (description
-     "This package is a port of the S+ \"Robust Library\".  It provides
-methods for robust statistics, notably for robust regression and robust
-multivariate analysis.")
-    (license license:gpl2)))
-
 (define-public r-trimcluster
   (package
     (name "r-trimcluster")

Reply via email to