guix-commits
[Top][All Lists]
Advanced

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

06/06: gnu: Add r-r2glmm.


From: Ricardo Wurmus
Subject: 06/06: gnu: Add r-r2glmm.
Date: Tue, 30 Oct 2018 17:48:15 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit fd649d1e68ac8123d6e6e66fcf8905e6c6ede5b7
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Oct 30 22:47:35 2018 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 9b46569..df86979 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7192,3 +7192,36 @@ package.  Model selection methods include step, drop1 
and anova-like tables
 for random effects (ranova).  Methods for Least-Square means (LS-means) and
 tests of linear contrasts of fixed effects are also available.")
     (license license:gpl2+)))
+
+(define-public r-r2glmm
+  (package
+    (name "r-r2glmm")
+    (version "0.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "r2glmm" version))
+       (sha256
+        (base32
+         "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-afex" ,r-afex)
+       ("r-data-table" ,r-data-table)
+       ("r-dplyr" ,r-dplyr)
+       ("r-ggplot2" ,r-ggplot2)
+       ("r-gridextra" ,r-gridextra)
+       ("r-lmertest" ,r-lmertest)
+       ("r-mass" ,r-mass)
+       ("r-matrix" ,r-matrix)
+       ("r-mgcv" ,r-mgcv)
+       ("r-pbkrtest" ,r-pbkrtest)))
+    (home-page "https://github.com/bcjaeger/r2glmm";)
+    (synopsis "Compute R squared for mixed (multilevel) models")
+    (description
+     "This package computes model and semi partial R squared with confidence
+limits for the linear and generalized linear mixed model (LMM and GLMM).  The
+R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
+using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
+al. (2016)).")
+    (license license:gpl2)))



reply via email to

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