powered by
Build a live tournament runtime from a specification
build(x, participants)
A tournament runtime object.
A bracketeer_spec or tournament_spec object.
bracketeer_spec
tournament_spec
Character vector of participant names, or a data.frame with a name column.
name
my_spec <- spec() |> swiss("open", rounds = 3) |> single_elim("playoffs", take = top_n(4)) # Materialize with participants trn <- build(my_spec, paste("Team", LETTERS[1:8]))
Run the code above in your browser using DataLab