mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 02:50:20 +01:00
gnu: Add r-yardstick.
* gnu/packages/cran.scm (r-yardstick): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
c4e34dda85
commit
d1843fec10
1 changed files with 30 additions and 0 deletions
|
@ -23706,3 +23706,33 @@ workflow. The advantages are:
|
||||||
"This package provides a computationally stable approach of fitting a
|
"This package provides a computationally stable approach of fitting a
|
||||||
@dfn{Gaussian Process} (GP) model to a deterministic simulator.")
|
@dfn{Gaussian Process} (GP) model to a deterministic simulator.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-yardstick
|
||||||
|
(package
|
||||||
|
(name "r-yardstick")
|
||||||
|
(version "0.0.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "yardstick" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1qkvbvc0cnwl5mkk47swnd8by84zz0qpy1996fziapn35qxvx9qa"))))
|
||||||
|
(properties `((upstream-name . "yardstick")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-dplyr" ,r-dplyr)
|
||||||
|
("r-generics" ,r-generics)
|
||||||
|
("r-proc" ,r-proc)
|
||||||
|
("r-rcpp" ,r-rcpp)
|
||||||
|
("r-rlang" ,r-rlang)
|
||||||
|
("r-tidyselect" ,r-tidyselect)))
|
||||||
|
(native-inputs
|
||||||
|
`(("r-knitr" ,r-knitr)))
|
||||||
|
(home-page "https://github.com/tidymodels/yardstick")
|
||||||
|
(synopsis "Tidy characterizations of model performance")
|
||||||
|
(description
|
||||||
|
"This package provides tidy tools for quantifying how well a model fits
|
||||||
|
to a data set such as confusion matrices, class probability curve summaries,
|
||||||
|
and regression metrics (e.g., RMSE).")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue