From 23cbd9a16f51d5368437eee82873a81c062f1be4 Mon Sep 17 00:00:00 2001 From: Max Kuhn Date: Mon, 20 Feb 2023 15:24:20 -0500 Subject: [PATCH] doc update (#1096) --- .gitignore | 1 + DESCRIPTION | 2 +- NEWS.md | 11 +++++------ README.md | 11 ----------- 4 files changed, 7 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index afaea1121..f6000324f 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ revdep/checks.noindex revdep/library.noindex revdep/data.sqlite .httr-oauth +revdep/cloud.noindex/* diff --git a/DESCRIPTION b/DESCRIPTION index 0346c8e78..23fbc7a1f 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: recipes Title: Preprocessing and Feature Engineering Steps for Modeling -Version: 1.0.4.9000 +Version: 1.0.5 Authors@R: c( person("Max", "Kuhn", , "max@posit.co", role = c("aut", "cre")), person("Hadley", "Wickham", , "hadley@posit.co", role = "aut"), diff --git a/NEWS.md b/NEWS.md index 44460a138..4a439693e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,18 +1,17 @@ -# recipes (development version) - -* Print methods no longer errors for untrained recipes with long selections. (#1083) +# recipes 1.0.5 * Added `outside` argument to `step_percentile()` to determine different ways of handling values outside the range of the training data. +* `step_range()` is now backwards compatible with respect to the `clipping` argument that was added 1.0.3, and old saved recipes can now be baked. (#1090) + * update print methods to use cli package for formatting. (#426) -* The `recipe`, `step`, and `check` methods for `generics::tune_args()` are now registered unconditionally (tidymodels/workflows#192). +* Print methods no longer errors for untrained recipes with long selections. (#1083) -* `step_range()` is now backwards compatible with respect to the `clipping` argument that was added 1.0.3, and old saved recipes can now be baked. (#1090) +* The `recipe`, `step`, and `check` methods for `generics::tune_args()` are now registered unconditionally (tidymodels/workflows#192). * Added a `conditionMessage()` method for `recipes_error`s to consistently point out which step errors occurred in when reporting errors. (#1080) - # recipes 1.0.4 * Added missing tidy method for `step_intercept()` and `step_lag()`. (#730) diff --git a/README.md b/README.md index c45dae2b9..50daa62f7 100644 --- a/README.md +++ b/README.md @@ -24,17 +24,6 @@ ad_rec <- recipe(Class ~ tau + VEGF, data = ad_data) %>% step_normalize(all_numeric_predictors()) ad_rec -#> Recipe -#> -#> Inputs: -#> -#> role #variables -#> outcome 1 -#> predictor 2 -#> -#> Operations: -#> -#> Centering and scaling for all_numeric_predictors() ``` More information on recipes can be found at the [*Get