guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

51/54: gnu: Add r-shapes.


From: guix-commits
Subject: 51/54: gnu: Add r-shapes.
Date: Sat, 14 Dec 2019 07:36:44 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit c71724653ab2b75ef533e9b9920e7b3f735154ad
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Dec 14 13:32:49 2019 +0100

    gnu: Add r-shapes.
    
    * gnu/packages/cran.scm (r-shapes): New variable.
---
 gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index dbaf4f8..6ef9f2e 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -18563,3 +18563,32 @@ spherical depths are supported.")
 archetypal analysis supporting arbitrary problem solving mechanisms for the
 different conceptual parts of the algorithm.")
     (license license:gpl2+)))
+
+(define-public r-shapes
+  (package
+    (name "r-shapes")
+    (version "1.2.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "shapes" version))
+       (sha256
+        (base32
+         "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
+    (properties `((upstream-name . "shapes")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-mass" ,r-mass)
+       ("r-minpack-lm" ,r-minpack-lm)
+       ("r-rgl" ,r-rgl)
+       ("r-scatterplot3d" ,r-scatterplot3d)))
+    (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes";)
+    (synopsis "Statistical shape analysis")
+    (description
+     "This package provides routines for the statistical analysis of landmark
+shapes, including Procrustes analysis, graphical displays, principal
+components analysis, permutation and bootstrap tests, thin-plate spline
+transformation grids and comparing covariance matrices.  See Dryden, I.L.  and
+Mardia, K.V. (2016).  Statistical shape analysis, with Applications in R (2nd
+Edition), John Wiley and Sons.")
+    (license license:gpl2)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]