powered by
Bootstrap average values and corresponding standard errors for each predictor in the dominance analysis. These values are used for assessing general dominance.
bootAverageDominanceAnalysis( x, R, constants = c(), terms = NULL, fit.functions = "default", null.model = NULL, ... )
An object of class `bootAverageDominanceAnalysis` containing: -
The results of the bootstrap analysis in a boot object.
boot
The predictors analyzed
The fit functions used in the analysis
The number of bootstrap resamples
expanded grid of predictors by fit functions
The terms analyzed
A model object, like `lm`, `glm`, or `lmer`.
An integer indicating the number of bootstrap resamples to be performed.
A character vector specifying predictors that should remain constant in the bootstrap analysis. Default is an empty vector.
An optional vector of terms (predictors) to be analyzed. If NULL, terms are obtained from the model. Default is NULL.
A vector of functions providing fit indices for the model. See `fit.functions` parameter in `dominanceAnalysis` function.
An optional model object specifying the null model for linear mixed models, used as a baseline for testing submodels. Default is NULL.
Additional arguments passed to `dominanceAnalysis` method
Use summary() to obtain a nicely formatted data.frame object.
summary()
data.frame
dominanceAnalysis, boot
dominanceAnalysis
# \donttest{ lm.1 <- lm(Employed ~ ., longley) da.ave.boot <- bootAverageDominanceAnalysis(lm.1, R = 1000) summary(da.ave.boot) # }
Run the code above in your browser using DataLab