tests/testthat/_snaps/misc.md

cannot create a split with an empty analysis set

Code
  make_splits(indices, df)
Condition
  Error in `rsplit()`:
  ! At least one row should be selected for the analysis set.

cannot create a split from empty training dataframe

Code
  make_splits(training, testing)
Condition
  Error in `make_splits()`:
  ! The analysis set must contain at least one row.

cannot create a split from dataframes with different columns

Code
  make_splits(training, testing)
Condition
  Error in `make_splits()`:
  ! The analysis and assessment sets must have the same columns.

improper argument

Code
  make_splits("potato")
Condition
  Error in `make_splits()`:
  ! No method for objects of class: character

get_rsplit()

Code
  get_rsplit(val, 3)
Condition
  Error in `get_rsplit()`:
  ! `index` must be a length-1 integer between 1 and 1.
  * A value of 3 was provided.
Code
  get_rsplit(val, c(1, 2))
Condition
  Error in `get_rsplit()`:
  ! `index` must be a length-1 integer between 1 and 1.
  * Index was of length 2.
Code
  get_rsplit(val, 1.5)
Condition
  Error in `get_rsplit()`:
  ! `index` must be a length-1 integer between 1 and 1.
  * A value of 1.5 was provided.
Code
  get_rsplit(warpbreaks, 1)
Condition
  Error in `get_rsplit()`:
  ! No method for objects of class: data.frame


tidymodels/rsample documentation built on Sept. 29, 2024, 10:48 p.m.