`Boots_CI()` computes the Confidence Interval (CI) of a performance measure
(for instance, accuracy) via bootstrapping.
Usage
Boots_CI(target, pred, index = "acc", nboots, confidence = 95, ...)
Value
A vector containing the bootstrap estimate of the performance and its CI.
Arguments
target
Numeric vector containing the actual values.
pred
Numeric vector containing the predicted values.
(The order should be the same than the target's).
index
Performance measure name, in lowercase. (Defaults: "acc").
nboots
Number of bootstrapping replicas.
confidence
Confidence level; for instance, 95% or 99%. (Defaults: 95).
...
Further arguments to be passed to the performance measures functions;
notably, multi.class="macro" or multi.class="micro" for the macro or micro
performance measures. (Defaults: "macro").