diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-11-07 17:28:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-11-07 23:32:46 +0100 |
commit | 738dda8330539db9e1c3e1cafd9fc5b8ccd12219 (patch) | |
tree | 5458d3f49a5f67ff83fb1768226cf32279c4010b /gnu/packages/cran.scm | |
parent | 7b0569c0a998f1bc4a551a815dd5ea7f669de305 (diff) | |
download | guix-738dda8330539db9e1c3e1cafd9fc5b8ccd12219.tar guix-738dda8330539db9e1c3e1cafd9fc5b8ccd12219.tar.gz |
gnu: Add r-bbmle.
* gnu/packages/cran.scm (r-bbmle): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 30c27cff6d..97de2f90f4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1447,3 +1447,28 @@ plot and a kernel density plot.") suite of fast incremental algorithms for machine learning that can be used for training models for classification or ranking.") (license license:asl2.0))) + +(define-public r-bbmle + (package + (name "r-bbmle") + (version "1.0.20") + (source + (origin + (method url-fetch) + (uri (cran-uri "bbmle" version)) + (sha256 + (base32 + "1xzij7swrrzl5ly8l3lw6awh486zcm00251dwqws1y23fbgyh3vc")))) + (build-system r-build-system) + (propagated-inputs + `(("r-lattice" ,r-lattice) + ("r-mass" ,r-mass) + ("r-numderiv" ,r-numderiv))) + (home-page "http://cran.r-project.org/web/packages/bbmle/") + (synopsis "Tools for General Maximum Likelihood Estimation") + (description + "This package provides methods and functions for fitting maximum +likelihood models in R. This package modifies and extends the @code{mle} +classes in the @code{stats4} package.") + ;; Any version of the GPL + (license license:gpl2+))) |