me
/
guix
Archived
1
0
Fork 0

gnu: Add r-workflowsets.

* gnu/packages/cran.scm (r-workflowsets): New variable.
master
Ricardo Wurmus 2021-04-08 02:23:56 +02:00
parent 3118fde135
commit a2b1c149df
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 39 additions and 0 deletions

View File

@ -25853,6 +25853,45 @@ for finding reasonable values of hyper-parameters in models, pre-processing
methods, and post-processing steps.") methods, and post-processing steps.")
(license license:expat))) (license license:expat)))
(define-public r-workflowsets
(package
(name "r-workflowsets")
(version "0.0.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "workflowsets" version))
(sha256
(base32
"1q41isvj7hhbkx3y8k6kazpiygig92xannsz8dpklh0k3j9l3c2p"))))
(properties `((upstream-name . "workflowsets")))
(build-system r-build-system)
(propagated-inputs
`(("r-cli" ,r-cli)
("r-dplyr" ,r-dplyr)
("r-ggplot2" ,r-ggplot2)
("r-prettyunits" ,r-prettyunits)
("r-purrr" ,r-purrr)
("r-rlang" ,r-rlang)
("r-rsample" ,r-rsample)
("r-tibble" ,r-tibble)
("r-tidyr" ,r-tidyr)
("r-tune" ,r-tune)
("r-vctrs" ,r-vctrs)
("r-withr" ,r-withr)
("r-workflows" ,r-workflows)))
(native-inputs
`(("r-knitr" ,r-knitr)))
(home-page "https://github.com/tidymodels/workflowsets")
(synopsis "Create a collection of tidymodels workflows")
(description
"A workflow is a combination of a model and preprocessors (e.g, a
formula, recipe, etc.). In order to try different combinations of these, an
object can be created that contains many workflows. There are functions to
create workflows en masse as well as training them and visualizing the
results.")
(license license:expat)))
(define-public r-tidyposterior (define-public r-tidyposterior
(package (package
(name "r-tidyposterior") (name "r-tidyposterior")