diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-09 16:43:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-09 17:13:52 +0100 |
commit | 4fcbd7eaf33bd597f8e982f4d230f3670bbd64cf (patch) | |
tree | 73632cbb23516d2969707dd7b79cc4a84b13e72f /gnu | |
parent | c2d6e866ac8f480a98bcb27aa7c3cc5b8f588a23 (diff) |
gnu: Add r-rmeta.
* gnu/packages/cran.scm (r-rmeta): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 1b6196f4fd..f2fb042112 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10034,3 +10034,24 @@ max-stable processes only), model checking and selection and prediction.") "This package provides a suite of flexible and versatile model fitting and after-fitting functions for the analysis of dose-response data.") (license license:gpl2+))) + +(define-public r-rmeta + (package + (name "r-rmeta") + (version "3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "rmeta" version)) + (sha256 + (base32 + "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/rmeta") + (synopsis "Tools for meta-analysis") + (description + "This package provides functions for simple fixed and random effects +meta-analysis for two-sample comparisons and cumulative meta-analyses. It +draws standard summary plots, funnel plots, and computes summaries and tests +for association and heterogeneity.") + (license license:gpl2))) |