Skip to content

Commit

Permalink
0.2.0 RC (#474)
Browse files Browse the repository at this point in the history
* changes for noSuggests special check

* version bump

* version bumps
  • Loading branch information
topepo authored Mar 19, 2022
1 parent c4aa15c commit 139360d
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 36 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ vignettes/articles/Classification_cache/*
R/plots.R
tests/testthat/Rplots.pdf
docs
revdep
17 changes: 6 additions & 11 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: tune
Title: Tidy Tuning Tools
Version: 0.1.6.9003
Version: 0.2.0
Authors@R: c(
person("Max", "Kuhn", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2402-136X")),
Expand All @@ -21,22 +21,22 @@ Imports:
dials (>= 0.0.10),
dplyr (>= 1.0.0),
foreach,
generics (>= 0.1.0.9000),
generics (>= 0.1.2),
ggplot2,
glue,
GPfit,
hardhat (>= 0.1.6.9001),
hardhat (>= 0.2.0),
lifecycle (>= 1.0.0),
parsnip (>= 0.1.7.9005),
parsnip (>= 0.2.0),
purrr (>= 0.3.2),
recipes (>= 0.1.17.9001),
recipes (>= 0.2.0),
rlang (>= 0.4.0),
rsample (>= 0.0.9),
tibble (>= 3.1.0),
tidyr,
vctrs (>= 0.3.0),
withr,
workflows (>= 0.2.4.9002),
workflows (>= 0.2.5),
yardstick (>= 0.0.7)
Suggests:
covr,
Expand All @@ -46,11 +46,6 @@ Suggests:
spelling,
testthat (>= 3.0.0),
xml2
Remotes:
tidymodels/hardhat,
tidymodels/parsnip,
tidymodels/recipes,
tidymodels/workflows
Config/Needs/website:
pkgdown,
tidymodels,
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tune (development version)
# tune 0.2.0

* The `.notes` column now contains information on the type of note (error or warning), the location where it occurred, and the note. Printing a tune result has different output describing the notes.

Expand Down
26 changes: 14 additions & 12 deletions R/merge.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,21 +50,23 @@
#'
#' merge(pca_rec, pca_grid)
#'
#' library(parsnip)
#' library(dials)
#' data(hpc_data, pacakge = "modeldata")
#' if (rlang::is_installed("modeldata")) {
#' library(parsnip)
#' library(dials)
#' data(hpc_data, package = "modeldata")
#'
#' xgb_mod <-
#' boost_tree(trees = tune(), min_n = tune()) %>%
#' set_engine("xgboost")
#' xgb_mod <-
#' boost_tree(trees = tune(), min_n = tune()) %>%
#' set_engine("xgboost")
#'
#' set.seed(254)
#' xgb_grid <-
#' extract_parameter_set_dials(xgb_mod) %>%
#' finalize(hpc_data) %>%
#' grid_max_entropy(size = 3)
#' set.seed(254)
#' xgb_grid <-
#' extract_parameter_set_dials(xgb_mod) %>%
#' finalize(hpc_data) %>%
#' grid_max_entropy(size = 3)
#'
#' merge(xgb_mod, xgb_grid)
#' merge(xgb_mod, xgb_grid)
#' }
#' }
#' @export
merge.recipe <- function(x, y, ...) {
Expand Down
26 changes: 14 additions & 12 deletions man/merge.recipe.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 139360d

Please sign in to comment.