CreateStratifiedPartition | R Documentation |
Stratified partitioning is supported for binary classification problems and it randomly partitions the modeling data, keeping the percentage of positive class observations in each partition the same as in the original dataset. Stratified partitioning is supported for either Training/Validation/Holdout ("TVH") or cross-validation ("CV") splits. In either case, the holdout percentage (holdoutPct) must be specified; for the "CV" method, the number of cross-validation folds (reps) must also be specified, while for the "TVH" method, the validation subset percentage (validationPct) must be specified.
CreateStratifiedPartition(
validationType,
holdoutPct,
reps = NULL,
validationPct = NULL
)
validationType |
character. String specifying the type of partition generated, either "TVH" or "CV". |
holdoutPct |
integer. The percentage of data to be used as the holdout subset. |
reps |
integer. The number of cross-validation folds to generate; only applicable when validationType = "CV". |
validationPct |
integer. The percentage of data to be used as the validation subset. |
This function is one of several convenience functions provided to simplify the task
of starting modeling projects with custom partitioning options. The other
functions are CreateGroupPartition
, CreateRandomPartition
, and
CreateUserPartition
.
An S3 object of class 'partition' including the parameters required by the SetTarget function to generate a stratified partitioning of the modeling dataset.
CreateGroupPartition
, CreateRandomPartition
,
CreateUserPartition
.
CreateStratifiedPartition(validationType = "CV", holdoutPct = 20, reps = 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.