When multiple events occur at the same time (ties), the partial likelihood must account for the possible event orderings. Three methods exist: breslow, efron and discrete

Notation

  • : total distinct event times
  • : number of events at time
  • : set of subjects experiencing event at
  • : risk set at
  • : sum of covariate vectors of event subjects
  • : covariate vector of a possible selection of subjects from

Method 1: Breslow (Approximation)

Treats ties as sequential events, but does not update the risk set between them.

The denominator uses the full risk set times.

Example (Burn data, , with 31 women [W] and 114 men [M], 5 events: 1W + 4M):

Method 2: Efron (Improved Approximation)

Similar to Breslow but adds a correction factor to the denominator as each successive event occurs.

At the -th event, the denominator is reduced by of the total hazard from the event subjects.

Example (Burn data, ):

The total hazard of 5 event subjects:

Method 3: Discrete (Exact)

Enumerates all possible ways subjects could be selected from as the event set.

where enumerates all possible selections of subjects from .

Example (Burn data, ): 6 possibilities for 5 events by gender (5W, 4W+1M, 3W+2M, …, 5M):

Comparison

MethodAccuracyComputationWhen to Use
BreslowGood for few tiesFastestDefault in most software
EfronBetter than BreslowModerateModerate ties; R default
DiscreteExactSlow (combinatorial)Many ties, small

NOTE

R’s coxph() uses Efron by default. The method argument accepts "efron", "breslow", or "exact".