mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add r-ranger.
* gnu/packages/statistics.scm (r-ranger): New variable. Signed-off-by: Ben Woodcroft <donttrustben@gmail.com>
This commit is contained in:
parent
d1906e3147
commit
02eec38ee1
1 changed files with 23 additions and 0 deletions
|
@ -4796,3 +4796,26 @@ (define-public r-tclust
|
||||||
algorithms (@code{tclust}) based on trimming and including some graphical
|
algorithms (@code{tclust}) based on trimming and including some graphical
|
||||||
diagnostic tools (@code{ctlcurves} and @code{DiscrFact}).")
|
diagnostic tools (@code{ctlcurves} and @code{DiscrFact}).")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public r-ranger
|
||||||
|
(package
|
||||||
|
(name "r-ranger")
|
||||||
|
(version "0.6.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "ranger" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1fwqwbi0dnla16x6zj14rf95qr5gmilfmlrwnv7s960h4yiw4n97"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-rcpp" ,r-rcpp)))
|
||||||
|
(home-page "https://github.com/imbs-hl/ranger")
|
||||||
|
(synopsis "Fast implementation of random forests")
|
||||||
|
(description
|
||||||
|
"This package provides a fast implementation of Random Forests,
|
||||||
|
particularly suited for high dimensional data. Ensembles of classification,
|
||||||
|
regression, survival and probability prediction trees are supported. Data from
|
||||||
|
genome-wide association studies can be analyzed efficiently.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
Loading…
Reference in a new issue