rsample
rsample copied to clipboard
Classes and functions to create and summarize resampling objects
Not all methods may need to show up here, it's currently pretty crowded. 
sooo, there isn't much input checking for some of the main functions here in {rsample}, to the point of `bootstraps(bootstraps)` not returning an error 😬 ## bootstraps ``` r library(rsample)...
Hi, If I split a dataframe using `initial_split` stratifying by an imbalanced two-level factor, I get very uneven division. Below is an example using synthetic data. ``` library(dplyr) library(rsample) set.seed((1845))...
Suggested feature: allow for sampling m times at each bootstrap iteration instead of the default n times. With m < n, and n is the length of the object to...
## Feature Over on spatialsample, there have been a few requests (https://github.com/tidymodels/spatialsample/issues/158, https://github.com/tidymodels/spatialsample/issues/157) for a function that basically works like this: ``` r library(rsample) library(magrittr) library(generics) augment.rset Tree age circumference...
Not really a bug per se but I want to report that: I found it impossible to use group_bootstraps with a dataset of n around 10000, and the number of...
For some tune internals, it would be helpful to be able to make intervals for an extended set of column columns (s opposed to just `terms`). See tidymodels/tune#818. These changes...
A number of `pretty` methods returns strings with trailing spaces. Below, it would be better for line 58 to not have a trailing space, and for 61 to start with...
Here are few scenarios I would like to describe in this feature request: 1) Combining/crossing multiple resampling methods (e.g. `spatial_nndm_cv()` crossed with `sliding_period()` resamples) 2) Determining/benchmarking best model similar to...