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

Missing tidy functions for steps #730

Closed
EmilHvitfeldt opened this issue Jun 17, 2021 · 2 comments · Fixed by #1073
Closed

Missing tidy functions for steps #730

EmilHvitfeldt opened this issue Jun 17, 2021 · 2 comments · Fixed by #1073
Labels
feature a feature request or enhancement

Comments

@EmilHvitfeldt
Copy link
Member

The following 3 steps do not have tidy functions for them

tidy_funs <- grep("^tidy\\.", ls(getNamespace("recipes")), value = TRUE)
tidy_funs <- gsub("^.{5}", "", tidy_funs)
tidy_funs <- grep("^step_.*", tidy_funs, value = TRUE)

step_funs <- grep("^step_.*", ls(getNamespace("recipes")), value = TRUE)
step_funs <- unique(gsub("_new$", "", step_funs))

setdiff(step_funs, tidy_funs)
#> [1] "step_intercept" "step_lag"       "step_type"

Created on 2021-06-16 by the reprex package (v2.0.0)

@hfrick hfrick added the feature a feature request or enhancement label Jun 17, 2021
@topepo
Copy link
Member

topepo commented Apr 25, 2022

step_type is an internal function. Otherwise, go ahead and make tidy methods

@github-actions
Copy link

This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex https://reprex.tidyverse.org) and link to this issue.

@github-actions github-actions bot locked and limited conversation to collaborators Jan 18, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
feature a feature request or enhancement
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants