diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2023-11-03 17:30:02 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-11-04 23:13:51 +0100 |
commit | 1678be98f22601383aeba28f7c9b27efd2b633e0 (patch) | |
tree | c1fd79323e3e8e7982ebfcd8ec5ad52cdcb384d8 /gnu/packages | |
parent | ab64815f6ab11fb18805ca0f04530e31f85bddd5 (diff) |
gnu: Add r-evmix.
* gnu/packages/cran.scm (r-evmix): New variable.
Change-Id: I93152dee218e9cef85dd66e17231f1728f0ffb52
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 899a41e337..10bc6313c5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7253,6 +7253,35 @@ univariate and bivariate maxima models, and for univariate and bivariate threshold models.") (license license:gpl3))) +(define-public r-evmix + (package + (name "r-evmix") + (version "2.12") + (source + (origin + (method url-fetch) + (uri (cran-uri "evmix" version)) + (sha256 + (base32 "02rabc9snci00s1x7h0svfr66lmw1wjcdg0149wc52mnccsdaivf")))) + (properties `((upstream-name . "evmix"))) + (build-system r-build-system) + (propagated-inputs + (list r-gsl + r-mass + r-sparsem)) + (home-page "http://www.math.canterbury.ac.nz/~c.scarrott/evmix.shtml") + (synopsis + "Extreme value threshold estimation and uncertainty quantification") + (description + "This package provides the usual distribution functions, maximum likelihood +inference and model diagnostics for univariate stationary extreme value mixture +models. Also, there are provided kernel density estimation including various +boundary corrected kernel density estimation methods and a wide choice of kernels, +with cross-validation likelihood based bandwidth estimator. Reasonable +consistency with the base functions in the evd package is provided, so that users +can safely interchange most code.") + (license license:gpl3))) + (define-public r-excelr (package (name "r-excelr") |