Emil Hvitfeldt
Emil Hvitfeldt
> For example, if the day of month was 28 in NY but 29 in UTC then I'm not sure how to control that in the output. This step will...
I think we should expand the documentation to show that `across()` can be used in `step_mutate()`. For consistantcy we should supersede the relevant steps. https://lifecycle.r-lib.org/articles/stages.html#superseded
Generally we advice that you use step_rm() instead of step_select() to remove variables for some of these reasons 🙂
> Is there a way to improve the error message, to make it clearer to new users? We will see what we can do! This is also related to https://github.com/tidymodels/recipes/issues/741
More minimal reprex: ``` r library(recipes) rec step_select(-vs) |> prep() rec |> bake(new_data = mtcars) #> # A tibble: 32 × 10 #> cyl disp hp drat wt qsec am...
Are you sure you are not able to pass what you need to `quantile()` in `step_discretize()` via the `options` argument?
Hello @abichat 👋 You are correct that something is slightly off there. I have confirmed that the model that is fit inside `step_pls()` is identical to the model being fit...
Having `ptype` information is going to make this issue much nicer https://github.com/tidymodels/recipes/pull/1329
I personally like the second option, Ideally it would be nice if we should add the logic here, around/after line 600. https://github.com/tidymodels/recipes/blob/d26981702fbdf3826d3b150fc87884c50fab1de3/R/recipe.R#L595-L607 The main roadblock for that right now, is...
This is a good idea. We would need to think really carefully about how to handle cases of "future" observations. I would be a great idea to see how much...