diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-14 13:32:39 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-14 13:35:58 +0100 |
commit | ccc2c19b02ef2a5b71ea67719a0d57b34e2622b7 (patch) | |
tree | 9960af5745bc91ec73c09737cf80acbdfb17112c /gnu/packages/cran.scm | |
parent | 9fd2d4fdb17ad70b8e94a388546eab59642faecd (diff) | |
download | guix-ccc2c19b02ef2a5b71ea67719a0d57b34e2622b7.tar guix-ccc2c19b02ef2a5b71ea67719a0d57b34e2622b7.tar.gz |
gnu: Add r-archetypes.
* gnu/packages/cran.scm (r-archetypes): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7688e90f23..dbaf4f88af 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -18539,3 +18539,27 @@ depth-based location estimators, the package includes functions or drawing contour plots and perspective plots of depth functions. Euclidian and spherical depths are supported.") (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+))) |