Alias for two_leg_knockout() used by the tournament stage-verb API.
Arguments
- participants
Participants, a spec object, or a tournament object.
- ...
Additional arguments forwarded to
two_leg_knockout().
Examples
# Two-leg knockout (Champions League style)
teams <- paste("Club", sprintf("%02d", 1:16))
trn <- tournament(teams) |>
round_robin("groups", groups = 4) |>
two_leg("knockouts", take = top_per_group(2))
