We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
epi_df
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
step_epi_naomit()
step_naomit()
tibble::as_tibble()
Consider reconstructing the epi_df after each step inside the bake/prep loop.
bake/prep
The text was updated successfully, but these errors were encountered:
I was running into this in adjustAhead with step_mutate; I think most non-epipredict steps will do this.
step_mutate
My solution for this was to put the metadata in at prep time, but that isn't exactly ideal, as there may be different metadata at later points
Sorry, something went wrong.
This is potentially impossible to fix. Any call to bake() will destroy the epi_df at the end of the loop (unless we clobber recipes:::bake.recipe().
bake()
recipes:::bake.recipe()
Reason:
bake(epi_recipe) -> recipes:::bake.recipe() -> ... -> hardhat::recompose(new_data,...) -> hardhat::coerce_to_tibble() -> hardhat::hardhat_new_tibble()
bake(epi_recipe)
hardhat::recompose(new_data,...)
hardhat::coerce_to_tibble()
hardhat::hardhat_new_tibble()
This last drops the class without recourse. I don't suspect they will be willing to change this behaviour: tidymodels/hardhat#230.
Successfully merging a pull request may close this issue.
step_epi_naomit()
is one such.step_naomit()
callstibble::as_tibble()
at the end.Consider reconstructing the
epi_df
after each step inside thebake/prep
loop.The text was updated successfully, but these errors were encountered: