mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: Add r-rffc.
* gnu/packages/cran.scm (r-rffc): New variable.
This commit is contained in:
parent
cf9ddbd4bc
commit
89fd577ec2
1 changed files with 24 additions and 0 deletions
|
@ -25658,6 +25658,30 @@ (define-public r-rfast
|
|||
Poisson), are some of the many fast functions.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-rffc
|
||||
(package
|
||||
(name "r-rffc")
|
||||
(version "1.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://download.r-forge.r-project.org/src/contrib/"
|
||||
"rfFC_" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"05x9wgzsmx4vb12lmcspymgmpb2xw8bwryb8ysg7vzg2nkh0ma3g"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-randomforest",r-randomforest)))
|
||||
(home-page "https://r-forge.r-project.org/projects/rffc/")
|
||||
(synopsis "Random Forest Feature Contributions")
|
||||
(description "This package provides functions for extracting feature
|
||||
contributions from a random forest model from package @code{randomForest}.
|
||||
Feature contributions provide detailed information about the relationship
|
||||
between data variables and the predicted value returned by random forest
|
||||
model.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-clusterr
|
||||
(package
|
||||
(name "r-clusterr")
|
||||
|
|
Loading…
Reference in a new issue