fixef.coxme {coxme}R Documentation

Extract coxme Fixed Effects

Description

Extract the fixed effects portion from a coxme model.

Usage

## S3 method for class 'coxme':
fixef(object, ...)

Arguments

object an object inheriting from class coxme, representing the result of a mixed effects Cox model.
... some methods for this generic require additional arguments. None are used in this method.

Value

the vector of coefficients for the fixed effects

Author(s)

Terry Therneau

See Also

coxme, random.effects.coxme

Examples

rat1 <- coxme(Surv(time, status) ~ rx + (1|litter), rats)
fixed.effects(rat1)

[Package coxme version 2.0 Index]