Description Usage Arguments Methods (by class) Examples
Calculate confidence intervals for bootstrapped robust linear regression estimates with or without compositional data
1 2 3 4 5 6 7 |
object |
an object returned from |
parm |
a specification of which parameters are to be given confidence intervals, either a vector of numbers or a vector of names. If missing, all parameters are considered. |
level |
the confidence level required. |
type |
the type of interval required (see the type argument of |
... |
currently ignored. |
bccomplmrob
: for bootstrapped estimates of robust linear regression models for compositional data
bclmrob
: for bootstrapped estimates of robust linear regression models
1 2 3 4 5 6 7 8 9 10 11 12 13 | data <- data.frame(lifeExp = state.x77[, "Life Exp"], USArrests[ , -3])
mUSArr <- complmrob(lifeExp ~ ., data = data)
bc <- bootcoefs(mUSArr, R = 200) # the number of bootstrap replicates should
# normally be higher!
confint(bc, level = 0.95, type = "perc")
### For normal robust linear regression models ###
require(robustbase)
data(aircraft)
mod <- lmrob(Y ~ ., data = aircraft)
bootEst <- bootcoefs(mod, R = 200)
confint(bootEst, level = 0.95, type = "perc")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.