diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-04-21 09:21:49 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-04-21 23:07:52 +0200 |
commit | f1c7a2428044136b41a2cc6cd344c4c7c20d5a22 (patch) | |
tree | d027fff8e45cd05703b3bcddaff712bad287e4b0 /gnu | |
parent | 2acc0e5f8f8b1147e4a35adf0566d4324521b290 (diff) | |
download | patches-f1c7a2428044136b41a2cc6cd344c4c7c20d5a22.tar patches-f1c7a2428044136b41a2cc6cd344c4c7c20d5a22.tar.gz |
gnu: Add r-cardata.
* gnu/packages/statistics.scm (r-cardata): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index a76f1cbfc7..55b087cd78 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -5123,6 +5123,26 @@ modification of F-tests for linear mixed effects models and a parametric bootstrap test for generalized linear mixed models.") (license license:gpl2+))) +(define-public r-cardata + (package + (name "r-cardata") + (version "3.0-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "carData" version)) + (sha256 + (base32 + "193pdwgw6gk19v7swk1kwphg3vqdmpsgi555g9nyz93sa39j7r8j")))) + (properties `((upstream-name . "carData"))) + (build-system r-build-system) + (home-page "https://r-forge.r-project.org/projects/car/") + (synopsis "Data Sets for the book Companion to Applied Regression") + (description + "This package provides datasets to accompany J. Fox and S. Weisberg, An R +Companion to Applied Regression, Third Edition, Sage.") + (license license:gpl2+))) + (define-public r-car (package (name "r-car") |