1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-27 12:40:32 +02:00

gnu: Add r-factominer.

* gnu/packages/cran.scm (r-factominer): New variable.
This commit is contained in:
Ricardo Wurmus
2018-06-13 11:40:17 +02:00
parent cbf6017d83
commit e83841a296

View File

@@ -4316,3 +4316,37 @@ Analysis and its Applications.")
"This package provides a fast implementation of hierarchical
clustering.")
(license license:gpl2+)))
(define-public r-factominer
(package
(name "r-factominer")
(version "1.41")
(source
(origin
(method url-fetch)
(uri (cran-uri "FactoMineR" version))
(sha256
(base32
"1h20hydav6l2b7bngqw1av4l5rrh0wk58nhailga1f4qw9lrv259"))))
(properties `((upstream-name . "FactoMineR")))
(build-system r-build-system)
(propagated-inputs
`(("r-car" ,r-car)
("r-cluster" ,r-cluster)
("r-ellipse" ,r-ellipse)
("r-flashclust" ,r-flashclust)
("r-lattice" ,r-lattice)
("r-leaps" ,r-leaps)
("r-mass" ,r-mass)
("r-scatterplot3d" ,r-scatterplot3d)))
(home-page "http://factominer.free.fr")
(synopsis "Multivariate exploratory data analysis and data mining")
(description
"This package provides exploratory data analysis methods to summarize,
visualize and describe datasets. The main principal component methods are
available, those with the largest potential in terms of applications:
principal component analysis (PCA) when variables are quantitative,
correspondence analysis (CA) and multiple correspondence analysis (MCA) when
variables are categorical, Multiple Factor Analysis when variables are
structured in groups, etc. and hierarchical cluster analysis.")
(license license:gpl2+)))