guix-commits
[Top][All Lists]
Advanced

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

01/28: gnu: Add r-esc.


From: guix-commits
Subject: 01/28: gnu: Add r-esc.
Date: Mon, 15 Mar 2021 05:55:27 -0400 (EDT)

lbraun pushed a commit to branch master
in repository guix.

commit c4e826bbd2dd22bd7005cbb5e32e2a5018e6216d
Author: Lars-Dominik Braun <ldb@leibniz-psychology.org>
AuthorDate: Mon Mar 15 09:08:30 2021 +0100

    gnu: Add r-esc.
    
    * gnu/packages/statistics.scm (r-esc): New variable.
---
 gnu/packages/statistics.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 9761b9c..86a818d 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -6058,3 +6058,28 @@ Helper functions to apply the Correcting for Outcome 
Reporting Bias (CORB)
 method to correct for outcome reporting bias in a meta-analysis (van Aert &
 Wicherts, 2020).")
     (license license:gpl2+)))
+
+(define-public r-esc
+  (package
+    (name "r-esc")
+    (version "0.5.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "esc" version))
+        (sha256
+          (base32
+            "0gns7gz55p6pha05413r3hlvd7f2v1amxkg13d197mab1ypqic7q"))))
+    (properties `((upstream-name . "esc")))
+    (build-system r-build-system)
+    (home-page "https://strengejacke.github.io/esc/";)
+    (synopsis
+      "Effect Size Computation for Meta Analysis")
+    (description
+      "Implementation of the web-based
+@url{http://www.campbellcollaboration.org/escalc/html/EffectSizeCalculator-Home.php,'Practical
+Meta-Analysis Effect Size Calculator'} from David B. Wilson in R.  Based on the
+input, the effect size can be returned as standardized mean difference, Cohen's
+f, Hedges' g, Pearson's r or Fisher's transformation z, odds ratio or log odds,
+or eta squared effect size.")
+    (license license:gpl3)))



reply via email to

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