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

Description Usage Arguments Value Author(s) See Also Examples

View source: R/summary.clogitboost.R

Description

summary methods for the clogitboost objects.

Usage

1
2
## S3 method for class 'clogitboost'
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.

Author(s)

Haolun Shi shl2003@connect.hku.hk

Guosheng Yin gyin@hku.hk

See Also

clogitboost

Examples

1
2
3
4
5
6
7
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)

Example output

$call
clogitboost(y = y, x = x, strata = strata, iter = 10, rho = 0.05)

$infscore
NULL

$loglike
NULL

clogitboost documentation built on May 2, 2019, 6:28 a.m.