Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove re-export of gather() #451

Merged
merged 2 commits into from
Aug 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ export(contains)
export(ends_with)
export(everything)
export(form_pred)
export(gather)
export(get_rsplit)
export(group_bootstraps)
export(group_initial_split)
Expand Down Expand Up @@ -450,7 +449,6 @@ importFrom(tibble,as_tibble)
importFrom(tibble,is_tibble)
importFrom(tibble,obj_sum)
importFrom(tibble,tibble)
importFrom(tidyr,gather)
importFrom(tidyr,unnest)
importFrom(tidyselect,all_of)
importFrom(tidyselect,any_of)
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

* The underlying mechanics of data splitting were changed so that `Surv` objects maintain their class. This change affects the row names of the resulting objects; they are reindexed from one instead of being a subset of the original row names. (#443)

* rsample does not re-export `gather()` anymore (#451).

# rsample 1.1.1

Expand Down
5 changes: 0 additions & 5 deletions R/reexports.R
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
#' @importFrom generics tidy
#' @export
generics::tidy


#' @importFrom tidyr gather
#' @export
tidyr::gather
3 changes: 1 addition & 2 deletions R/rsample-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ NULL
#' @importFrom purrr map map2 map_dbl pluck map_lgl list_rbind
#' @importFrom tibble tibble is_tibble as_tibble obj_sum
#' @importFrom pillar type_sum
#' @importFrom tidyr gather unnest
#' @importFrom tidyr unnest
#' @importFrom dplyr select %>% bind_cols bind_rows arrange_ arrange full_join
#' @importFrom dplyr mutate last ungroup group_by inner_join summarize do case_when
#' @importFrom vctrs vec_unique_count vec_count vec_slice vec_in vec_ptype_abbr
Expand All @@ -22,7 +22,6 @@ NULL
#' @importFrom stats quantile setNames qnorm pnorm dist
#' @importFrom tidyselect vars_select one_of
#' @importFrom furrr future_map
#' @importFrom tidyr gather

#------------------------------------------------------------------------------#

Expand Down
3 changes: 0 additions & 3 deletions man/reexports.Rd

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

Loading