coefficients.mvdareg | R Documentation |
Functions to extract regression coefficient bootstrap information from mvdalab objects.
## S3 method for class 'mvdareg' coefficients(object, ncomp = object$ncomp, conf = .95, ...)
object |
an mvdareg object. A fitted model. |
ncomp |
the number of components to include in the model (see below). |
conf |
for a bootstrapped model, the confidence level to use. |
... |
additional arguments. Currently ignored. |
coefficients
is used to extract a bootstrap summary of the regression of a PLS model.
If comps
is missing (or is NULL), summaries for all regression estimates are returned. Otherwise, if comps is given parameters for a model with only the requested component comps is returned.
Boostrap summaries provided are for actual regression coefficients, bootstrap percentiles, bootstrap mean, skewness, and bias. These summaries can also be extracted using coefficients.boots
A coefficients object contains a data frame with columns:
variable |
variable names |
Actual |
Actual loading estimate using all the data |
BCa percentiles |
confidence intervals |
boot.mean |
mean of the bootstrap |
skewness |
skewness of the bootstrap distribution |
bias |
estimate of bias w.r.t. the loading estimate |
Bootstrap Error |
estimate of bootstrap standard error |
t value |
approximate 't-value' based on the |
bias t value |
approximate 'bias t-value' based on the |
Nelson Lee Afanador (nelson.afanador@mvdalab.com)
coef
, coefficients.boots
, coefficients
data(Penta) mod1 <- plsFit(log.RAI ~., scale = TRUE, data = Penta[, -1], ncomp = 2, validation = "loo") coefficients(mod1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.