| backward {logistf} | R Documentation |
logistf Models
These functions provide simple backward elimination/forward selection procedures for logistf models
backward(object, scope, steps = 1000, slstay = 0.05, trace = TRUE, printwork = FALSE, ...) forward(object, scope, steps = 1000, slentry = 0.05, trace = TRUE, printwork = FALSE, pl = TRUE, ...)
object |
A fitted logistf model object. To start with an empty model, create a model fit with a formula=<y>~1, pl=FALSE. (Replace <y> by your response variable.) |
scope |
The scope of variables to add/drop from the model. If left blank, |
steps |
The number of forward selection/backward elimination steps. |
slstay |
For |
slentry |
For |
trace |
If TRUE, protocols selection steps. |
printwork |
If TRUE, prints each working model that is visited by the selection procedure. |
pl |
For |
... |
Further arguments to be passed to methods. |
The variable selection is simply performed by repeatedly calling add1 or drop1 methods for logistf, and is based on penalized likelihood ratio test. It can also properly handle variables that were defined as factors in the original data set.
An updated logistf fit with the finally selected model.
Georg Heinze
data(sex2) fit<-logistf(data=sex2, case~1, pl=FALSE) fitf<-forward(fit) fit2<-logistf(data=sex2, case~age+oc+vic+vicl+vis+dia) fitb<-backward(fit2)