gnu: Add r-rffc.

* gnu/packages/cran.scm (r-rffc): New variable.
This commit is contained in:
Roel Janssen 2021-05-27 13:55:33 +02:00
parent cf9ddbd4bc
commit 89fd577ec2
No known key found for this signature in database
GPG key ID: CBD0CD5138C19AFC

View file

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