Closed simonpcouch closed 5 months ago
I was thinking a lot about this this morning. Some thoughts not in our google doc:
With an eye for reducing Remotes
hoopla, I'm going to go ahead and merge and open issues for smaller todos.
This pull request 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.
Related to https://github.com/tidymodels/workflows/pull/225, https://github.com/tidymodels/container/pull/12.
Code looks something like (updated 5/22/2024):
Previous PR description
This PR proposes resampling calibrators using an "internal split"—it's _very_ scrappy at the moment and intended only for internal testing. ``` r library(tidymodels) library(container) library(probably) #> #> Attaching package: 'probably' #> The following objects are masked from 'package:base': #> #> as.factor, as.ordered # create example data set.seed(1) dat <- tibble(y = rnorm(100), x = y/2 + rnorm(100)) dat #> # A tibble: 100 × 2 #> y x #>