ensemble(mod, nreps = 2, data = NULL)
lm
, glm
, etc. See details.effect_size
and evaluate_model()
will be
used to extract the information from each of the bootstrap replicates. Many model types in R carry the
data used to train the model as part of the model object produced. For these types of models, e.g. lm
and
glm
, there is no need to provide a value for the data
argument. But there are some
types of models for which the training data cannot be extracted from the model object. In such situations,
you use data =
to provide the data set to use for resampling.