gnu: Add r-exposition.

* gnu/packages/cran.scm (r-exposition): New variable.
This commit is contained in:
Ricardo Wurmus 2022-09-15 15:20:38 +02:00
parent 845e14f0b6
commit c8accb5eb6
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -8020,6 +8020,29 @@ (define-public r-expm
exponential, logarithm, square root, and related quantities.")
(license license:gpl2+)))
(define-public r-exposition
(package
(name "r-exposition")
(version "2.8.23")
(source (origin
(method url-fetch)
(uri (cran-uri "ExPosition" version))
(sha256
(base32
"0x9400ggmgrnaish0cfgnyvw549g4ibfv9aj6vzq7j68n58vq405"))))
(properties `((upstream-name . "ExPosition")))
(build-system r-build-system)
(propagated-inputs (list r-prettygraphs))
(home-page "https://cran.r-project.org/package=ExPosition")
(synopsis "Exploratory analysis with the singular value decomposition")
(description
"This package provides a variety of descriptive multivariate analyses
with the singular value decomposition, such as principal components analysis,
correspondence analysis, and multidimensional scaling. See An ExPosition of
the Singular Value Decomposition in R (Beaton et al 2014)
<doi:10.1016/j.csda.2013.11.006>.")
(license license:gpl2)))
(define-public r-complexplus
(package
(name "r-complexplus")