diff options
author | pimi <madalinionel.patrascu@mdc-berlin.de> | 2018-08-29 10:28:15 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-09-11 00:14:58 +0200 |
commit | 2f195b6f23865417284883bfebc3b697270130f5 (patch) | |
tree | 8ac9156ac52f85bbe7c29acf0daadb0f7b2c7452 | |
parent | d54145c38a5112cdb7af417600e13319df5d475c (diff) | |
download | guix-2f195b6f23865417284883bfebc3b697270130f5.tar guix-2f195b6f23865417284883bfebc3b697270130f5.tar.gz |
gnu: Add r-mosaicdata.
* gnu/packages/cran.scm (r-mosaicdata): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8144391729..11822e1aa5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5564,3 +5564,22 @@ gf_density(), and so on, bring the formula interface to ggplot(). This captures and extends the excellent simplicity of the lattice-graphics formula interface, while providing the intuitive capabilities of @code{r-ggplot2}.") (license license:expat))) + +(define-public r-mosaicdata + (package + (name "r-mosaicdata") + (version "0.17.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "mosaicData" version)) + (sha256 + (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9")))) + (properties `((upstream-name . "mosaicData"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/mosaicData/") + (synopsis "Data sets for project Mosaic") + (description + "This package provides data sets from project Mosaic @url{http://mosaic-web.org} +used to teach mathematics, statistics, computation and modeling.") + (license license:gpl2+))) |