1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/labels.R
\name{labels.rsplit}
\alias{labels.rsplit}
\title{Find Labels from rsplit Object}
\usage{
\method{labels}{rsplit}(object, ...)
}
\arguments{
\item{object}{An \code{rsplit} object}
\item{...}{Not currently used.}
}
\value{
A tibble.
}
\description{
Produce a tibble of identification variables so that single
splits can be linked to a particular resample.
}
\examples{
cv_splits <- vfold_cv(mtcars)
labels(cv_splits$splits[[1]])
}
\seealso{
add_resample_id
}
|