mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add r-workflowsets.
* gnu/packages/cran.scm (r-workflowsets): New variable.
This commit is contained in:
parent
3118fde135
commit
a2b1c149df
1 changed files with 39 additions and 0 deletions
|
@ -25853,6 +25853,45 @@ (define-public r-tune
|
|||
methods, and post-processing steps.")
|
||||
(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
|
||||
(package
|
||||
(name "r-tidyposterior")
|
||||
|
|
Loading…
Reference in a new issue