summary.clogitboost {clogitboost} | R Documentation |
summary
methods for the clogitboost
objects.
## S3 method for class 'clogitboost' summary(object, ...)
object |
output object from the |
... |
not currently used. |
The function clogitboost()
returns the following list of values:
call |
original function call. |
infscore |
relative influence score for each covariate. |
loglike |
sequence of the fitted values of log-likelihood. |
Haolun Shi shl2003@connect.hku.hk
Guosheng Yin gyin@hku.hk
data(travel) train <- 1:504 y <- travel$MODE[train] x <- travel[train, 3:6] strata <- travel$Group[train] fit <- clogitboost(y = y, x = x, strata = strata, iter = 10, rho = 0.05) summary(fit)