diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-13 18:50:09 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-13 22:41:39 +0100 |
commit | c909b710a4ee5021268fc0abbaf324771d6dd63c (patch) | |
tree | da707cd50f856ce24b45565ca8df97e56f7f5381 /gnu | |
parent | 7e2e46cbe2dd2fe9f90f61dfffdd89e66172ce8e (diff) |
gnu: Add r-elasticnet.
* gnu/packages/cran.scm (r-elasticnet): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index dcbad9cb12..a92a487059 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -16780,3 +16780,26 @@ data.") "This is a package for mixture and flexible discriminant analysis, @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.") (license license:gpl2))) + +(define-public r-elasticnet + (package + (name "r-elasticnet") + (version "1.1.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "elasticnet" version)) + (sha256 + (base32 + "0p9dplnsp28z4s2fl6afbwrgd0aj339fak8mmndicmrh7bb7rpmb")))) + (properties `((upstream-name . "elasticnet"))) + (build-system r-build-system) + (propagated-inputs + `(("r-lars" ,r-lars))) + (home-page "http://www.stat.umn.edu/~hzou") + (synopsis "Elastic-Net for sparse estimation and sparse PCA") + (description + "This package provides functions for fitting the entire solution path of +the Elastic-Net and also provides functions for estimating sparse Principal +Components. The Lasso solution paths can be computed by the same function.") + (license license:gpl2+))) |