diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-11-18 09:13:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-11-18 11:18:38 +0100 |
commit | c151b0b63333b0cd1bcd21cb01ce1d15dd756d56 (patch) | |
tree | 1d49bd287172eeb8b6d4bda13474f06d1165efb8 | |
parent | 4982d0ac41ac0ad70826ff83eeb129472594313e (diff) | |
download | guix-c151b0b63333b0cd1bcd21cb01ce1d15dd756d56.tar guix-c151b0b63333b0cd1bcd21cb01ce1d15dd756d56.tar.gz |
gnu: Remove duplicate from (gnu packages cran).
* gnu/packages/cran.scm (r-bbmle): Remove duplicate.
-rw-r--r-- | gnu/packages/cran.scm | 33 |
1 files changed, 4 insertions, 29 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8121e0335f..9eb54c0358 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -733,11 +733,11 @@ and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and (home-page "http://cran.r-project.org/web/packages/bbmle") (synopsis "Tools for General Maximum Likelihood Estimation") (description - "Methods and functions for fitting maximum likelihood models in R. This -package modifies and extends the @code{mle} classes in the @code{stats4} -package.") + "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 (list license:gpl2 license:gpl3)))) + (license license:gpl2+))) (define-public r-emdbook (package @@ -1448,31 +1448,6 @@ 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+))) - (define-public r-xts (package (name "r-xts") |