Learn R Programming

clogitboost (version 1.1)

summary.clogitboost: Summary after fitting a boosting conditional logit model

Description

summary methods for the clogitboost objects.

Usage

"summary"(object, ...)

Arguments

object
output object from the clogitboost function.
...
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.

See Also

clogitboost

Examples

Run this code
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)

Run the code above in your browser using DataLab