gnu: Add r-archetypes.

* gnu/packages/cran.scm (r-archetypes): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-14 13:32:39 +01:00
parent 9fd2d4fdb1
commit ccc2c19b02
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -18539,3 +18539,27 @@ (define-public r-depth
contour plots and perspective plots of depth functions. Euclidian and contour plots and perspective plots of depth functions. Euclidian and
spherical depths are supported.") spherical depths are supported.")
(license license:gpl2))) (license license:gpl2)))
(define-public r-archetypes
(package
(name "r-archetypes")
(version "2.2-0.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "archetypes" version))
(sha256
(base32
"0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
(properties `((upstream-name . "archetypes")))
(build-system r-build-system)
(propagated-inputs
`(("r-modeltools" ,r-modeltools)
("r-nnls" ,r-nnls)))
(home-page "https://cran.r-project.org/web/packages/archetypes")
(synopsis "Archetypal analysis")
(description
"The main function @code{archetypes} implements a framework for
archetypal analysis supporting arbitrary problem solving mechanisms for the
different conceptual parts of the algorithm.")
(license license:gpl2+)))