gnu: Add r-metadat.

* gnu/packages/cran.scm (r-metadat): New variable.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Greg Hogan 2022-06-28 15:22:48 +00:00 committed by Guillaume Le Vaillant
parent 4eddce8ce9
commit 6804d2bc25
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -33438,3 +33438,24 @@ (define-public r-zoeppritz
coefficients or scattering amplitudes, for seismological P and S-waves at an
interface.")
(license license:gpl2+)))
(define-public r-metadat
(package
(name "r-metadat")
(version "1.2-0")
(source (origin
(method url-fetch)
(uri (cran-uri "metadat" version))
(sha256
(base32
"1f7mb3pw5d0akr09jjva06ay223izhpzbr21bapnw99x1kiybk7h"))))
(properties `((upstream-name . "metadat")))
(build-system r-build-system)
(propagated-inputs (list r-mathjaxr))
(home-page "https://github.com/wviechtb/metadat")
(synopsis "Meta-Analysis Datasets")
(description
"This package provides a collection of meta-analysis datasets for teaching
purposes, illustrating/testing meta-analytic methods, and validating published
analyses.")
(license license:gpl2+)))