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

commit 3a0a4ff2fb85ec18e9e3f5a167dbdd06c044bc17
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:54:51 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 7d284d87f5..27324b92e7 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13166,6 +13166,29 @@ densities.  It computes first and second moments (i.e. 
mean and covariance
 matrix) for the double-truncated multinormal case.")
     (license license:gpl2+)))
 
+(define-public r-trimcluster
+  (package
+    (name "r-trimcluster")
+    (version "0.2-0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "trimcluster" version))
+       (sha256
+        (base32
+         "0vmj3hrwm3rcd4sf7a6jq3ay7qgr39x3zpzmgi67gd8d8cr2hnfh"))))
+    (build-system r-build-system)
+    (propagated-inputs (list r-tclust))
+    (native-inputs (list r-fpc))
+    (home-page "https://cran.r-project.org/web/packages/trimcluster";)
+    (synopsis "Cluster analysis with trimming")
+    (description
+     "The trimmed k-means clustering method by Cuesta-Albertos, Gordaliza and
+Matran (1997).  This optimizes the k-means criterion under trimming a portion
+of the points.")
+    ;; Any GPL version
+    (license (list license:gpl2+ license:gpl3+))))
+
 (define-public r-rvest
   (package
     (name "r-rvest")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 7cee53a0fb..bb132b7d99 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1658,29 +1658,6 @@ following problems:
 @end enumerate\n")
     (license license:gpl3+)))
 
-(define-public r-trimcluster
-  (package
-    (name "r-trimcluster")
-    (version "0.2-0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "trimcluster" version))
-       (sha256
-        (base32
-         "0vmj3hrwm3rcd4sf7a6jq3ay7qgr39x3zpzmgi67gd8d8cr2hnfh"))))
-    (build-system r-build-system)
-    (propagated-inputs (list r-tclust))
-    (native-inputs (list r-fpc))
-    (home-page "https://cran.r-project.org/web/packages/trimcluster";)
-    (synopsis "Cluster analysis with trimming")
-    (description
-     "The trimmed k-means clustering method by Cuesta-Albertos, Gordaliza and
-Matran (1997).  This optimizes the k-means criterion under trimming a portion
-of the points.")
-    ;; Any GPL version
-    (license (list license:gpl2+ license:gpl3+))))
-
 (define-public r-tsne
   (package
     (name "r-tsne")

Reply via email to