me
/
guix
Archived
1
0
Fork 0

gnu: Add r-elasticnet.

* gnu/packages/cran.scm (r-elasticnet): New variable.
master
Ricardo Wurmus 2019-12-13 18:50:09 +01:00
parent 7e2e46cbe2
commit c909b710a4
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -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+)))