guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add r-weights.


From: Gábor Boskovits
Subject: 01/01: gnu: Add r-weights.
Date: Tue, 6 Nov 2018 10:07:34 -0500 (EST)

boskovits pushed a commit to branch master
in repository guix.

commit cddc0300b7fb5fbbc80f45a626073f8372bf491f
Author: lakshmi <address@hidden>
Date:   Tue Nov 6 15:59:01 2018 +0100

    gnu: Add r-weights.
    
    * gnu/packages/cran.scm (r-weights): New variable.
    
    Signed-off-by: Gábor Boskovits <address@hidden>
---
 gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index df86979..8fed911 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7225,3 +7225,31 @@ 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)))
+
+(define-public r-weights
+  (package
+    (name "r-weights")
+    (version "1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "weights" version))
+       (sha256
+        (base32
+         "0186bfpkhxngrshac6bpg37alp6slwhwd43inrm8hqg0vhpfgc4c"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-gdata" ,r-gdata)
+       ("r-hmisc" ,r-hmisc)
+       ("r-mice" ,r-mice)))
+    (home-page
+     "https://cran.r-project.org/web/packages/weights/";)
+    (synopsis "Weighting and weighted statistics")
+    (description "This package Provides a variety of functions for producing
+simple weighted statistics, such as weighted Pearson's correlations, partial
+correlations, Chi-Squared statistics, histograms, and t-tests.  Also now
+includes some software for quickly recoding survey data and plotting point
+estimates from interaction terms in regressions (and multiply imputed
+regressions).  NOTE: Weighted partial correlation calculations pulled to
+address a bug.")
+  (license license:gpl2+)))



reply via email to

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