guix-commits
[Top][All Lists]
Advanced

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

15/17: gnu: Add r-tclust.


From: Ben Woodcroft
Subject: 15/17: gnu: Add r-tclust.
Date: Sat, 11 Mar 2017 19:29:11 -0500 (EST)

benwoodcroft pushed a commit to branch master
in repository guix.

commit d1906e3147966e780d2f52d3ccebb85a80ad49e5
Author: Raoul Jean Pierre Bonnal <address@hidden>
Date:   Sat Mar 11 21:50:35 2017 +1000

    gnu: Add r-tclust.
    
    * gnu/packages/statistics.scm (r-tclust): New variable.
    
    Signed-off-by: Ben Woodcroft <address@hidden>
---
 gnu/packages/statistics.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index be201e2..c48c2be 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4772,3 +4772,27 @@ ones, notably the skew-t family, and provides related 
statistical
 methods for data fitting and diagnostics, in the univariate and the
 multivariate case.")
     (license license:gpl2+)))
+
+(define-public r-tclust
+  (package
+    (name "r-tclust")
+    (version "1.2-3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "tclust" version))
+       (sha256
+        (base32
+         "0a1b7yp4l9wf6ic5czizyl2cnxrc1virj0icr8i6m1vv23jd8jfp"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-mclust" ,r-mclust)
+       ("r-mvtnorm" ,r-mvtnorm)
+       ("r-sn" ,r-sn)))
+    (home-page "http://cran.r-project.org/web/packages/tclust";)
+    (synopsis "Robust trimmed clustering")
+    (description
+     "This package implements different robust clustering
+algorithms (@code{tclust}) based on trimming and including some graphical
+diagnostic tools (@code{ctlcurves} and @code{DiscrFact}).")
+    (license license:gpl3)))



reply via email to

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