summary.clogitboost {clogitboost} | R Documentation |
Summary after fitting a boosting conditional logit model
Description
summary
methods for the clogitboost
objects.
Usage
## S3 method for class 'clogitboost'
summary(object, ...)
Arguments
object |
output object from the |
... |
not currently used. |
Value
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. |
Author(s)
Haolun Shi shl2003@connect.hku.hk
Guosheng Yin gyin@hku.hk
See Also
Examples
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)
[Package clogitboost version 1.1 Index]