guix-commits
[Top][All Lists]
Advanced

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

04/10: gnu: Add r-mclust.


From: Ben Woodcroft
Subject: 04/10: gnu: Add r-mclust.
Date: Fri, 10 Mar 2017 19:44:33 -0500 (EST)

benwoodcroft pushed a commit to branch master
in repository guix.

commit 5638e154757454bab34b5391a0b07f17a9db4573
Author: Raoul Jean Pierre Bonnal <address@hidden>
Date:   Thu Jan 19 19:55:04 2017 +0100

    gnu: Add r-mclust.
    
    * gnu/packages/statistics.scm (r-mclust): New variable.
    
    Co-authored-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 06872fd..be845c0 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4233,3 +4233,27 @@ all data handling, while the M-step can be supplied by 
the user to easily
 define new models.  Existing drivers implement mixtures of standard linear
 models, generalized linear models and model-based clustering.")
     (license license:gpl2+)))
+
+(define-public r-mclust
+  (package
+    (name "r-mclust")
+    (version "5.2.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "mclust" version))
+       (sha256
+        (base32
+         "19cbg7p5h2b6h9mvcx9rjppyd3awma18ymaljakbnclpvhwbqpwd"))))
+    (build-system r-build-system)
+    (native-inputs
+     `(("gfortran" ,gfortran)))
+    (home-page "http://www.stat.washington.edu/mclust/";)
+    (synopsis "Gaussian mixture modelling for model-based clustering etc.")
+    (description
+     "This package provides Gaussian finite mixture models fitted via EM
+algorithm for model-based clustering, classification, and density estimation,
+including Bayesian regularization, dimension reduction for visualisation,
+and resampling-based inference.")
+    (license license:gpl2+)))
+



reply via email to

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