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.one_boot_scrnp.Rd
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.
one_boot_scrnp(Y, X, n, correct632, learner, sens)
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 |
sens | The sensitivity constraint to use. |
If learner
executes successfully, a numeric estimate of AUC
on this bootstrap sample. Otherwise the function returns NA
.