guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: Add r-vgam.


From: Ben Woodcroft
Subject: 02/04: gnu: Add r-vgam.
Date: Fri, 10 Mar 2017 21:10:59 -0500 (EST)

benwoodcroft pushed a commit to branch master
in repository guix.

commit d4cebae286fec90deae7c0cb829c8d57218c63fc
Author: Raoul Jean Pierre Bonnal <address@hidden>
Date:   Sat Mar 11 11:47:02 2017 +1000

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

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 5422603..6045c79 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4376,3 +4376,28 @@ clustering by merging Gaussian mixture components, as 
well as symmetric and
 asymmetric discriminant projections for visualisation of the separation of
 groupings.")
   (license license:gpl2+)))
+
+(define-public r-vgam
+  (package
+    (name "r-vgam")
+    (version "1.0-3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "VGAM" version))
+       (sha256
+        (base32
+         "0wr6szcpj8r4a1rlzgd6iym7khin69fmvxcf37iyvs8mms86dfr3"))))
+    (properties `((upstream-name . "VGAM")))
+    (build-system r-build-system)
+    (inputs
+     `(("gfortran" ,gfortran)))
+    (home-page "https://www.stat.auckland.ac.nz/~yee/VGAM";)
+    (synopsis "Vector generalized linear and additive models")
+    (description
+    "This package is an implementation of about 6 major classes of statistical
+regression models.  Currently only fixed-effects models are implemented, i.e.,
+no random-effects models.  Many (150+) models and distributions are estimated
+by maximum likelihood estimation (MLE) or penalized MLE, using Fisher scoring.
+VGLMs can be loosely thought of as multivariate generalised linear models.")
+    (license license:gpl2+)))



reply via email to

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