diff options
author | Roel Janssen <roel@gnu.org> | 2020-11-18 16:34:45 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-09 12:12:21 +0100 |
commit | a7f4a8b4d0d7fb98b1c8839b7d0c2600364e39c1 (patch) | |
tree | c833fdd120acb0469ad2d8982c01c891a5bcc682 /gnu | |
parent | 3b399e514f55d2a9700a64f86462e071b5bb993d (diff) |
gnu: Add r-invgamma.
* gnu/packages/cran.scm (r-invgamma): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index adb1bf421b..ee4e484cd0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2878,6 +2878,24 @@ and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and representation of intervals, including a method of coercing variables in data frames.") (license license:gpl2))) +(define-public r-invgamma + (package + (name "r-invgamma") + (version "1.1") + (source (origin + (method url-fetch) + (uri (cran-uri "invgamma" version)) + (sha256 + (base32 + "12ga2y4wc9bc5zz6vimvxwgjpsx3ys3209nq63gscbw559ydxa5a")))) + (properties `((upstream-name . "invgamma"))) + (build-system r-build-system) + (home-page "https://github.com/dkahle/invgamma") + (synopsis "Inverse gamma distribution") + (description "This package provides a light weight implementation of the +standard distribution functions for the inverse gamma distribution, wrapping +those for the gamma distribution in the @code{stats} package.") + (license license:gpl2))) (define-public r-bdsmatrix (package |