stratify_folds {riskscores} | R Documentation |
Generate Stratified Fold IDs
Description
Returns a vector of fold IDs that preserves class proportions.
Usage
stratify_folds(y, nfolds = 10, seed = NULL)
Arguments
y |
Numeric vector for the (binomial) response variable. |
nfolds |
Number of folds (default: 10). |
seed |
An integer that is used as argument by |
Value
Numeric vector with the same length as y
.
Examples
y <- rbinom(100, 1, 0.3)
foldids <- stratify_folds(y, nfolds = 5)
table(y, foldids)
[Package riskscores version 1.1.1 Index]