mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add r-dummies.
* gnu/packages/cran.scm (r-dummies): New variable.
This commit is contained in:
parent
6afc037e74
commit
6c2dcba99d
1 changed files with 20 additions and 0 deletions
|
@ -17545,3 +17545,23 @@ (define-public r-kernelfactory
|
|||
"Kernel factory is an ensemble method where each base classifier (random
|
||||
forest) is fit on the kernel matrix of a subset of the training data.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-dummies
|
||||
(package
|
||||
(name "r-dummies")
|
||||
(version "1.5.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "dummies" version))
|
||||
(sha256
|
||||
(base32
|
||||
"01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
|
||||
(properties `((upstream-name . "dummies")))
|
||||
(build-system r-build-system)
|
||||
(home-page "http://www.decisionpatterns.com")
|
||||
(synopsis "Create dummy/indicator variables flexibly and efficiently")
|
||||
(description
|
||||
"This package lets you expand factors, characters and other eligible
|
||||
classes into dummy/indicator variables.")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue