diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-09-11 19:06:26 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-09-11 19:06:47 +0200 |
commit | 6edf558fd0cfaf336a4f225a81b2ea653d9a8244 (patch) | |
tree | 996dffe691c634148a7caabc03dd89a9626beaee /gnu | |
parent | 37e9a7fabf4d4a7a2b57851fb94d97f787a93370 (diff) | |
download | guix-6edf558fd0cfaf336a4f225a81b2ea653d9a8244.tar.gz |
gnu: Add r-modeldata.
* gnu/packages/cran.scm (r-modeldata): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c0c2018d4a..7db537863c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -24120,6 +24120,26 @@ functions or computational engines (e.g. R, Spark, Stan, etc).") expressive statistical grammar that coheres with the Tidy design framework.") (license license:cc0))) +(define-public r-modeldata + (package + (name "r-modeldata") + (version "0.0.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "modeldata" version)) + (sha256 + (base32 + "13q6hhbwqbwnjvg8bz6iwwfx96p1saqq3r34cjrbnpgzmr1nn11l")))) + (properties `((upstream-name . "modeldata"))) + (build-system r-build-system) + (home-page "https://modeldata.tidymodels.org") + (synopsis "Data sets useful for modeling packages") + (description + "This package provides data sets used for demonstrating or testing +model-related packages.") + (license license:expat))) + (define-public r-tidymodels (package (name "r-tidymodels") |