guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit a45c33d3a8a8d6a2daaeda068f9dcbb08c70edd6
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:47:24 2026 +0100
gnu: r-tclust: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-tclust): Move from here...
* gnu/packages/cran.scm (r-tclust): ...to here.
Change-Id: Ic9e03d1bd07792cf0c8568dc9bb25fcab95da8fb
---
gnu/packages/cran.scm | 31 +++++++++++++++++++++++++++++++
gnu/packages/statistics.scm | 31 -------------------------------
2 files changed, 31 insertions(+), 31 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index dc01bc40c4..5ca5547937 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -12645,6 +12645,37 @@ utilities to compose new adjustments are also
included. Tailors are tightly
integrated with the tidymodels framework.")
(license license:expat)))
+(define-public r-tclust
+ (package
+ (name "r-tclust")
+ (version "2.1-2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "tclust" version))
+ (sha256
+ (base32
+ "0x5rgxjlll9552bb59jf59mv7040rb0l14j3sh8vylwv6wpbnc85"))))
+ (properties
+ '((updater-extra-native-inputs . ("r-cluster" "r-mclust" "r-sn"))))
+ (build-system r-build-system)
+ ;; These are all suggested packages, not build dependencies.
+ (propagated-inputs
+ (list r-doparallel
+ r-foreach
+ r-mass
+ r-rcpp
+ r-rcpparmadillo
+ r-rlang))
+ (native-inputs (list r-cluster r-mclust r-sn))
+ (home-page "https://cran.r-project.org/web/packages/tclust")
+ (synopsis "Robust trimmed clustering")
+ (description
+ "This package implements different robust clustering
+algorithms (@code{tclust}) based on trimming and including some graphical
+diagnostic tools (@code{ctlcurves} and @code{DiscrFact}).")
+ (license license:gpl3)))
+
(define-public r-tglkmeans
(package
(name "r-tglkmeans")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 34ae2c04ec..0d6eb860c3 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1849,37 +1849,6 @@ which, one can calculate integrals over truncated
regions for multivariate
normals.")
(license license:gpl2)))
-(define-public r-tclust
- (package
- (name "r-tclust")
- (version "2.1-2")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "tclust" version))
- (sha256
- (base32
- "0x5rgxjlll9552bb59jf59mv7040rb0l14j3sh8vylwv6wpbnc85"))))
- (properties
- '((updater-extra-native-inputs . ("r-cluster" "r-mclust" "r-sn"))))
- (build-system r-build-system)
- ;; These are all suggested packages, not build dependencies.
- (propagated-inputs
- (list r-doparallel
- r-foreach
- r-mass
- r-rcpp
- r-rcpparmadillo
- r-rlang))
- (native-inputs (list r-cluster r-mclust r-sn))
- (home-page "https://cran.r-project.org/web/packages/tclust")
- (synopsis "Robust trimmed clustering")
- (description
- "This package implements different robust clustering
-algorithms (@code{tclust}) based on trimming and including some graphical
-diagnostic tools (@code{ctlcurves} and @code{DiscrFact}).")
- (license license:gpl3)))
-
(define-public r-tsne
(package
(name "r-tsne")