Learn R Programming

rsample (version 0.0.2)

fill: Add Assessment Indicies

Description

Many `rsplit` and `rset` objects do not contain indicators for the assessment samples. `fill` can be used to populate the slot for the appropriate indices.

Usage

fill(x, ...)

Arguments

x

A `rsplit` and `rset` object.

...

Not currently used

Value

An object of the same time with the integer indicies.

Examples

Run this code
# NOT RUN {
set.seed(28432)
fold_rs <- vfold_cv(mtcars)

fold_rs$splits[[1]]$out_id
complement(fold_rs$splits[[1]])

fill(fold_rs$splits[[1]])$out_id

fold_rs_all <- fill(fold_rs)
fold_rs_all$splits[[1]]$out_id
# }

Run the code above in your browser using DataLab