guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 98350b905387b4bb69fe5d8b5572f20f318bdb8c
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Sun Mar 8 18:27:09 2026 +0100
gnu: r-factoextra: Update to 2.0.0.
* gnu/packages/cran.scm (r-factoextra): Update to 2.0.0.
[propagated-inputs]: Remove r-abind, r-reshape2, and r-tidyr; add r-rlang.
[native-inputs]: Add r-testthat.
Change-Id: If3b8016e74fc6002837b0020576f51e67cd517cb
---
gnu/packages/cran.scm | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e9401b0fc8..1b966486f4 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -27107,25 +27107,24 @@ structured in groups, etc. and hierarchical cluster
analysis.")
(define-public r-factoextra
(package
(name "r-factoextra")
- (version "1.0.7")
+ (version "2.0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "factoextra" version))
(sha256
(base32
- "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
+ "0229j9mana85c3yn3dsxpncr25wyn3nvsavb5dy1c33wyparr8lv"))))
(build-system r-build-system)
(propagated-inputs
- (list r-abind
- r-cluster
+ (list r-cluster
r-dendextend
r-factominer
r-ggplot2
r-ggpubr
r-ggrepel
- r-reshape2
- r-tidyr))
+ r-rlang))
+ (native-inputs (list r-testthat))
(home-page "http://www.sthda.com/english/rpkgs/factoextra")
(synopsis "Extract and visualize the results of multivariate data
analyses")
(description