logistpl.control(maxit=100, maxhs=5, maxstep=5, lconv=0.00001, xconv=0.00001, ortho=FALSE, pr=FALSE)
lconv
xconv
logistpl
does not compute a
confidence limit) by their principal components (of the same rank). This may sometimes speed up or enable convlogistpl
does not compute a
confidence limit) by their principal components (of the same rank). This may sometimes speed up or enable convergence. Default=FALSElogistpl.control()
is used by logistf
(if pl==TRUE
) and logistfplot
, which both call the internal function logistpl
,
to set control parameters to default values.
Different values can be specified, e. g., by logistf(...,plcontrol=logistpl.control(maxstep=1
)).data(sexagg)
fit1<-logistf(case ~ age+oc+vic+vicl+vis+dia, data=sexagg, weights=COUNT) # use default
fit1$pl.iter
fit2<-logistf(case ~ age+oc+vic+vicl+vis+dia, data=sexagg, weights=COUNT, plcontrol=logistpl.control(maxstep=1)) #change maxstep
fit2$pl.iter
Run the code above in your browser using DataLab