diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2022-12-07 06:18:26 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-12-12 16:17:07 +0100 |
commit | 8d2222fac6d1adf99cef4ead7389f86d4a6b77a8 (patch) | |
tree | 13fc8e5783d5c0a41005fdc1c3a0f8ef3a8fdad4 | |
parent | 5fb5af5658b7575a945579a7cf51c193600b76bb (diff) |
gnu: Add r-statip.
* gnu/packages/cran.scm (r-statip): New variable.
-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 0cffa61246..16329b5871 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6452,6 +6452,37 @@ color labels, layout, etc.") ;; Any version of the GPL (license license:gpl2+))) +(define-public r-statip + (package + (name "r-statip") + (version "0.2.3") + (source (origin + (method url-fetch) + (uri (cran-uri "statip" version)) + (sha256 + (base32 + "0kymc3ds1nx0h11ffmm3vmqr1w34gd0k788vf72x2v45h8c1ma2n")))) + (properties `((upstream-name . "statip"))) + (build-system r-build-system) + (propagated-inputs + (list r-clue r-rpart)) + (home-page "https://github.com/paulponcet/statip") + (synopsis "Statistical functions for probability distributions and regression") + (description + "This package provides a collection of miscellaneous statistical +functions for: +@itemize +@item probability distributions, +@item probability density estimation, +@item most frequent value estimation, +@item other statistical measures of location, +@item construction of histograms, +@item calculation of the Hellinger distance, +@item use of classical kernels, and +@item univariate piecewise-constant regression. +@end itemize") + (license license:gpl3))) + (define-public r-stringdist (package (name "r-stringdist") |