[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add r-princurve.
From: |
guix-commits |
Subject: |
01/02: gnu: Add r-princurve. |
Date: |
Thu, 27 May 2021 07:31:53 -0400 (EDT) |
roelj pushed a commit to branch master
in repository guix.
commit 12392cff5063c01b8de870ceae99e6e8fbec546f
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Thu May 27 13:30:48 2021 +0200
gnu: Add r-princurve.
* gnu/packages/cran.scm (r-princurve): New variable.
---
gnu/packages/cran.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e0b26e8..894f2bc 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3475,6 +3475,25 @@ statistical functions and other utilities to ease their
usage.")
quantities.")
(license license:expat)))
+(define-public r-princurve
+ (package
+ (name "r-princurve")
+ (version "2.1.6")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "princurve" version))
+ (sha256
+ (base32
+ "0wzk329bxljkzz57y220lsfckpsn45w348m6dcxh29zbj0ik65h2"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-rcpp" ,r-rcpp)))
+ (home-page "https://github.com/rcannood/princurve")
+ (synopsis "Fit a principal curve in arbitrary dimension")
+ (description "This package provides procedures for fitting a principal
+curve to a data matrix in arbitrary dimensions.")
+ (license license:gpl2)))
+
(define-public r-reshape
(package
(name "r-reshape")