guix-devel
[Top][All Lists]
Advanced

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

[PATCH 02/14] gnu: Add r-cluster.


From: Ricardo Wurmus
Subject: [PATCH 02/14] gnu: Add r-cluster.
Date: Tue, 12 Apr 2016 09:51:15 +0200

* gnu/packages/statistics.scm (r-cluster): New variable.
---
 gnu/packages/statistics.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 2487375..0657e86 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -965,6 +965,28 @@ database.")
 transformations.")
     (license license:x11)))
 
+(define-public r-cluster
+  (package
+    (name "r-cluster")
+    (version "2.0.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "cluster" version))
+       (sha256
+        (base32
+         "03jfczb3dwg57f164pya0b762xgyswyb9a7s33lw9i0s5dq72ri8"))))
+    (build-system r-build-system)
+    (inputs
+     `(("gfortran" ,gfortran)))
+    (home-page "http://cran.r-project.org/web/packages/cluster";)
+    (synopsis "Methods for data cluster analysis")
+    (description
+     "This package provides tools that are useful in finding groups in data.
+It is based on the methods described in Kaufman and Rousseeuw (1990) \"Finding
+Groups in Data\".")
+    (license license:gpl2+)))
+
 (define-public r-chron
   (package
     (name "r-chron")
-- 
2.1.0




reply via email to

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