diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-08-14 22:13:22 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-08-17 17:26:10 +0200 |
commit | e389d10f559911224b960c88f80fcbbabe0bb632 (patch) | |
tree | d43222b07845c075cb7b5deef333b531585cf9e8 /gnu/packages/cran.scm | |
parent | b723dedf817e02eda27a222c770d0df3a43b39c0 (diff) | |
download | patches-e389d10f559911224b960c88f80fcbbabe0bb632.tar patches-e389d10f559911224b960c88f80fcbbabe0bb632.tar.gz |
gnu: Add r-rmtstat.
* gnu/packages/cran.scm (r-rmtstat): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 811dd9ba79..88e275c738 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -574,3 +574,24 @@ Utility functions are provided, e.g. for plotting data as maps, spatial selection, as well as methods for retrieving coordinates, for subsetting, print, summary, etc.") (license license:gpl2+))) + +(define-public r-rmtstat + (package + (name "r-rmtstat") + (version "0.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "RMTstat" version)) + (sha256 + (base32 + "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1")))) + (properties `((upstream-name . "RMTstat"))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/RMTstat") + (synopsis "Distributions, statistics and tests derived from random matrix theory") + (description + "This package provides functions for working with the Tracy-Widom laws +and other distributions related to the eigenvalues of large Wishart +matrices.") + (license license:bsd-3))) |