[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42117] [PATCH 02/17] gnu: Add r-workflows.
From: |
Peter Lo |
Subject: |
[bug#42117] [PATCH 02/17] gnu: Add r-workflows. |
Date: |
Mon, 29 Jun 2020 13:50:27 +0800 |
* gnu/packages/cran.scm (r-workflows): New variable.
---
gnu/packages/cran.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 97025dda09..d8e8a88baa 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22358,3 +22358,36 @@ have. The goal of @code{hardhat} is to reduce the
burden around building
new modeling packages by providing functionality for preprocessing,
predicting, and validating input.")
(license license:expat)))
+
+(define-public r-workflows
+ (package
+ (name "r-workflows")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "workflows" version))
+ (sha256
+ (base32
+ "14lzbszz7ybfzqa5zw1hfh81b8rbwwyza6x8nhpnknl6x4adqfql"))))
+ (properties `((upstream-name . "workflows")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-cli" ,r-cli)
+ ("r-ellipsis" ,r-ellipsis)
+ ("r-generics" ,r-generics)
+ ("r-glue" ,r-glue)
+ ("r-hardhat" ,r-hardhat)
+ ("r-parsnip" ,r-parsnip)
+ ("r-rlang" ,r-rlang)))
+ (native-inputs `(("r-knitr" ,r-knitr)))
+ (home-page
+ "https://github.com/tidymodels/workflows")
+ (synopsis "Modeling Workflows")
+ (description
+ "Managing both a @code{parsnip} model and a preprocessor, such
+as a model formula or recipe from @code{recipes}, can often be
+challenging. The goal of @code{workflows} is to streamline this
+process by bundling the model alongside the preprocessor, all within
+the same object.")
+ (license license:expat)))
--
2.17.1
- [bug#42117] [PATCH] gnu: Add r-tidymodels and its many dependencies, Lo Peter, 2020/06/29
- [bug#42117] [PATCH 01/17] gnu: Add r-hardhat., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 02/17] gnu: Add r-workflows.,
Peter Lo <=
- [bug#42117] [PATCH 03/17] gnu: Add r-gpfit., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 04/17] gnu: Add r-yardstick., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 06/17] gnu: Add r-dicedesign., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 05/17] gnu: Add r-rsample., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 07/17] gnu: Add r-dials., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 08/17] gnu: Add r-tune., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 09/17] gnu: Add r-tidyposterior., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 10/17] gnu: Add r-tidypredict., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 11/17] gnu: Add r-janeaustenr., Peter Lo, 2020/06/29
- [bug#42117] [PATCH 12/17] gnu: Add r-tokenizers., Peter Lo, 2020/06/29