diff options
author | Roel Janssen <roel@gnu.org> | 2020-09-09 16:51:08 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2020-09-09 16:51:08 +0200 |
commit | 37d337300885d40c21507fe19c2548c62a97779d (patch) | |
tree | 0e786ac6c34f05d948e43b2b2bd3ec3f119b2ba2 | |
parent | cc61af0b29d0ec43cf104d3d0d2b829e5cc515ef (diff) | |
download | guix-37d337300885d40c21507fe19c2548c62a97779d.tar.gz |
gnu: Add r-mboost.
* gnu/packages/cran.scm (r-mboost): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9b16920660..3b13bbd585 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -520,6 +520,35 @@ functions are simplified but can be faster or have other advantages.") objects.") (license license:gpl3))) +(define-public r-mboost + (package + (name "r-mboost") + (version "2.9-3") + (source (origin + (method url-fetch) + (uri (cran-uri "mboost" version)) + (sha256 + (base32 + "1qp5c43kc0939sss5w3hhn794lbi69wgfsa31sq4c8vzh35pjqmf")))) + (build-system r-build-system) + (propagated-inputs + `(("r-lattice" ,r-lattice) + ("r-matrix" ,r-matrix) + ("r-nnls" ,r-nnls) + ("r-partykit" ,r-partykit) + ("r-quadprog" ,r-quadprog) + ("r-stabs" ,r-stabs) + ("r-survival" ,r-survival))) + (home-page "https://github.com/boost-R/mboost") + (synopsis "Model-based boosting") + (description + "This package provides a functional gradient descent algorithm (boosting) +for optimizing general risk functions utilizing component-wise (penalised) +least squares estimates or regression trees as base-learners for fitting +generalized linear, additive and interaction models to potentially +high-dimensional data.") + (license license:gpl2))) + (define-public r-sys (package (name "r-sys") |