one_boot_auc {nlpred} | R Documentation |
Internal function used to perform one bootstrap sample. The function
try
s to fit learner
on a bootstrap sample. If for some reason
(e.g., the bootstrap sample contains no observations with Y = 1
)
the learner fails, then the function returns NA
. These NA
s
are ignored later when computing the bootstrap corrected estimate.
Description
Internal function used to perform one bootstrap sample. The function
try
s to fit learner
on a bootstrap sample. If for some reason
(e.g., the bootstrap sample contains no observations with Y = 1
)
the learner fails, then the function returns NA
. These NA
s
are ignored later when computing the bootstrap corrected estimate.
Usage
one_boot_auc(Y, X, n, correct632, learner)
Arguments
Y |
A numeric binary outcome |
X |
A |
n |
Number of observations |
correct632 |
A boolean indicating whether to use the .632 correction. |
learner |
A wrapper that implements the desired method for building a
prediction algorithm. See |
Value
If learner
executes successfully, a numeric estimate of AUC
on this bootstrap sample. Otherwise the function returns NA
.