abe {abe} | R Documentation |
Augmented Backward Elimination
Description
Function "abe"
performs Augmented backward elimination where variable selection is based on the change-in-estimate and significance or information criteria.
It can also make a backward-selection based on significance or information criteria only by turning off the change-in-estimate criterion.
Usage
abe(fit, data = NULL, include = NULL, active = NULL, tau = 0.05,
exp.beta = TRUE, exact = FALSE, criterion = "alpha", alpha = 0.2,
type.test = "Chisq", type.factor = NULL, verbose = T)
Arguments
fit |
An object of a class |
data |
data frame used when fitting the object |
include |
a vector containing the names of variables that will be included in the final model. These variables are used as only passive variables during modeling. These variables might be exposure variables of interest or known confounders. They will never be dropped from the working model in the selection process, but they will be used passively in evaluating change-in-estimate criteria of other variables. Note, variables which are not specified as include or active in the model fit are assumed to be active and passive variables. |
active |
a vector containing the names of active variables. These less important explanatory variables will only be used as active, but not as passive variables when evaluating the change-in-estimate criterion. |
tau |
Value that specifies the threshold of the relative change-in-estimate criterion. Default is set to 0.05. |
exp.beta |
Logical specifying if exponent is used in formula to standardize the criterion. Default is set to TRUE. |
exact |
Logical, specifies if the method will use exact change-in-estimate or its approximation. Default is set to FALSE, which means that the method will use approximation proposed by Dunkler et al. Note, setting to TRUE can severely slow down the algorithm, but setting to FALSE can in some cases lead to a poor approximation of the change-in-estimate criterion. |
criterion |
String that specifies the strategy to select variables for the black list.
Currently supported options are significance level |
alpha |
Value that specifies the level of significance as explained above. Default is set to 0.2. |
type.test |
String that specifies which test should be performed in case the |
type.factor |
String that specifies how to treat factors, see details, possible values are |
verbose |
Logical that specifies if the variable selection process should be printed. Note: this can severely slow down the algorithm. |
Details
Using the default settings ABE will perform augmented backward elimination based on significance.
The level of significance will be set to 0.2. All variables will be treated as "passive or active".
Approximated change-in-estimate will be used. Threshold of the relative change-in-estimate criterion will be 0.05.
Setting tau to a very large number (e.g. Inf
) turns off the change-in-estimate criterion, and ABE will only perform backward elimination.
Specifying "alpha" = 0
will include variables only because of the change-in-estimate criterion,
as then variables are not safe from exclusion because of their p-values.
Specifying "alpha" = 1
will always include all variables.
When using type.factor="individual"
each dummy variable of a factor is treated as an individual explanatory variable, hence only this dummy variable can be removed from the model (warning: use sensible coding for the reference group).
Using type.factor="factor"
will look at the significance of removing all dummy variables of the factor and can drop the entire variable from the model.
Value
An object of class "lm"
, "glm"
or "coxph"
representing the model chosen by abe method.
Author(s)
Rok Blagus, rok.blagus@mf.uni-lj.si
Sladana Babic
References
Daniela Dunkler, Max Plischke, Karen Lefondre, and Georg Heinze. Augmented backward elimination: a pragmatic and purposeful way to develop statistical models. PloS one, 9(11):e113677, 2014.
See Also
Examples
# simulate some data:
set.seed(1)
n=100
x1<-runif(n)
x2<-runif(n)
x3<-runif(n)
y<--5+5*x1+5*x2+ rnorm(n,sd=5)
dd<-data.frame(y,x1,x2,x3)
# fit a simple model containing only numeric covariates
fit<-lm(y~x1+x2+x3,x=TRUE,y=TRUE,data=dd)
# perform ABE with "x1" as only passive and "x2" as only active
# using the exact change in the estimate of 5% and significance
# using 0.2 as a threshold
abe.fit<-abe(fit,data=dd,include="x1",active="x2",
tau=0.05,exp.beta=FALSE,exact=TRUE,criterion="alpha",alpha=0.2,
type.test="Chisq",verbose=TRUE)
summary(abe.fit)
# similar example, but turn off the change-in-estimate and perform
# only backward elimination
abe.fit<-abe(fit,data=dd,include="x1",active="x2",
tau=Inf,exp.beta=FALSE,exact=TRUE,criterion="alpha",alpha=0.2,
type.test="Chisq",verbose=TRUE)
summary(abe.fit)
# an example with the model containing categorical covariates:
dd$x3<-rbinom(n,size=3,prob=1/3)
dd$y1<--5+5*x1+5*x2+ rnorm(n,sd=5)
fit<-lm(y1~x1+x2+factor(x3),x=TRUE,y=TRUE,data=dd)
# treat "x3" as a single covariate:
abe.fit.fact<-abe(fit,data=dd,include="x1",active="x2",
tau=0.05,exp.beta=FALSE,exact=TRUE,criterion="alpha",alpha=0.2,
type.test="Chisq",verbose=TRUE,type.factor="factor")
summary(abe.fit.fact)
# treat each dummy of "x3" as a separate covariate:
abe.fit.ind<-abe(fit,data=dd,include="x1",active="x2",
tau=0.05,exp.beta=FALSE,exact=TRUE,criterion="alpha",alpha=0.2,
type.test="Chisq",verbose=TRUE,type.factor="individual")
summary(abe.fit.ind)