diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-11 00:07:58 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-12 14:29:02 +0200 |
commit | 5aca0cd1e30fe64d5204e2eee4cc3bd5439e005a (patch) | |
tree | 8f5378d51b53e4284d81ce6cd14c50f9dbe3b4d5 /gnu | |
parent | 64b18f328273993b47ee1209626cb4d604fb8ccf (diff) | |
download | guix-5aca0cd1e30fe64d5204e2eee4cc3bd5439e005a.tar.gz |
gnu: Add r-envstats.
* gnu/packages/cran.scm (r-envstats): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 34d1fa3521..0f5ebb2859 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7009,6 +7009,37 @@ non-parametric analysis of structured data, and other energy statistics/methods are implemented.") (license license:gpl2+))) +(define-public r-envstats + (package + (name "r-envstats") + (version "2.8.0") + (source (origin + (method url-fetch) + (uri (cran-uri "EnvStats" version)) + (sha256 + (base32 + "17fgwa5rdjpsxk95p1j48bkpbmm01vy25vzbgggj31a1k2i4i85p")))) + (properties `((upstream-name . "EnvStats"))) + (build-system r-build-system) + (propagated-inputs (list r-ggplot2 r-mass r-nortest)) + (home-page "https://github.com/alexkowa/EnvStats") + (synopsis + "Package for environmental statistics, including US EPA guidance") + (description + "This is a package for graphical and statistical analyses of +environmental data, with a focus on analyzing chemical concentrations and +physical parameters, usually in the context of mandated environmental +monitoring. It provides major environmental statistical methods found in the +literature and regulatory guidance documents, with extensive help that +explains what these methods do, how to use them, and where to find them in the +literature. It comes with numerous built-in data sets from regulatory +guidance documents and environmental statistics literature. It includes +scripts reproducing analyses presented in the book \"EnvStats: An R Package +for Environmental Statistics\" (Millard, 2013, Springer, ISBN +978-1-4614-8455-4, +@url{https://link.springer.com/book/10.1007/978-1-4614-8456-1}).") + (license license:gpl3+))) + (define-public r-suppdists (package (name "r-suppdists") |