diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-12 22:22:53 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-12 22:47:56 +0100 |
commit | 061a4b68500a7aa002a89b2eea5bea8374ed905d (patch) | |
tree | 7c1ebe6023685eec9090d80866418546d948bab0 | |
parent | c60e3e10f3b26629b4468b357a6b0e2761872941 (diff) |
gnu: Add r-gamlss-dist.
* gnu/packages/cran.scm (r-gamlss-dist): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 2cfa277e69..f3f964d70e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -11095,3 +11095,30 @@ methods in cell type identification, visualization and lineage reconstruction do not account for dropout events. DrImpute can improve the performance of such software by imputing dropout events.") (license license:gpl3))) + +(define-public r-gamlss-dist + (package + (name "r-gamlss-dist") + (version "5.1-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "gamlss.dist" version)) + (sha256 + (base32 + "1cd0vl9klcb849i8xwyjm8ihb1da92631j1rxdbnflgffkzrkya4")))) + (properties `((upstream-name . "gamlss.dist"))) + (build-system r-build-system) + (propagated-inputs `(("r-mass" ,r-mass))) + (home-page "http://www.gamlss.org/") + (synopsis "Distributions for Generalized Additive Models for location scale and shape") + (description + "This package provides a set of distributions which can be used for +modelling the response variables in Generalized Additive Models for Location +Scale and Shape. The distributions can be continuous, discrete or mixed +distributions. Extra distributions can be created, by transforming, any +continuous distribution defined on the real line, to a distribution defined on +ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit} +transformation, respectively.") + ;; Either version of the GPL. + (license (list license:gpl2 license:gpl3)))) |