Get tournament winner
Examples
teams <- c("A", "B", "C", "D")
trn <- tournament(teams) |>
round_robin("groups") |>
single_elim("finals", take = top_n(2))
# ... enter all results ...
# Get the champion
winner(trn)
#> [1] NA
Get tournament winner
teams <- c("A", "B", "C", "D")
trn <- tournament(teams) |>
round_robin("groups") |>
single_elim("finals", take = top_n(2))
# ... enter all results ...
# Get the champion
winner(trn)
#> [1] NA