diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-18 21:50:02 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-19 09:53:04 +0100 |
commit | 4376166b03bdafebb16fbec3577ca16bccd48cd5 (patch) | |
tree | dbb853400e5d2e13f5d274d3340a429608bd1796 /gnu | |
parent | 846f4c2303ab88c80435b47dae54e52257417a71 (diff) | |
download | guix-4376166b03bdafebb16fbec3577ca16bccd48cd5.tar guix-4376166b03bdafebb16fbec3577ca16bccd48cd5.tar.gz |
gnu: Add r-metap.
* gnu/packages/cran.scm (r-metap): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index f9c8dce804..108650d19a 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2201,3 +2201,27 @@ easy-to-maintain version of TeX Live. This package also contains helper functions to compile LaTeX documents, and install missing LaTeX packages automatically.") (license license:expat))) + +(define-public r-metap + (package + (name "r-metap") + (version "0.8") + (source + (origin + (method url-fetch) + (uri (cran-uri "metap" version)) + (sha256 + (base32 + "06ny9zkilawdy0s8yiwhnygs3yppw89bbyf76zgdavykbzscz5lh")))) + (build-system r-build-system) + (propagated-inputs + `(("r-lattice" ,r-lattice))) + (home-page "http://www.dewey.myzen.co.uk/meta/meta.html") + (synopsis "Meta-analysis of significance values") + (description + "The canonical way to perform meta-analysis involves using effect sizes. +When they are not available this package provides a number of methods for +meta-analysis of significance values including the methods of Edgington, +Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate +published results; and a routine for graphical display.") + (license license:gpl2))) |