Usage
getCompetitionHistory(competition_code)
getCompetitionRounds(season_code)
getCompetitionPhases(season_code)
getCompetitionTeams(season_code)
getCompetitionGames(season_code, round, phase_type = "All")Arguments
- competition_code
One or more competition codes.
Admitted values areEfor Euroleague andUfor Eurocup.- season_code
One or more season codes as obtained from
getCompetitionHistory().
Examples areE2023for Euroleague orU2023for Eurocup 2023.- round
One or more round codes as obtained from
getCompetitionRounds().- phase_type
One or more phase type codes as obtained from
getCompetitionPhases().
Admitted values areRSfor regular season,POfor playoffs andFFfor final four. Default isAllfor all.
Value
For each function, returns a tibble with information about history, rounds, phases, teams or games of chosen season and competition code.
Examples
if (FALSE) { # \dontrun{
getCompetitionHistory(competition_code = c("E", "U")) |> head(5)
getCompetitionRounds(season_code = c("E2023", "E2022")) |> head(5)
getCompetitionPhases(season_code = c("E2023", "U2023")) |> head(5)
getCompetitionTeams(season_code = c("E2023", "U2023")) |> head(5)
getCompetitionGames(season_code = "E2023", round = 1:5) |> head(5)
} # }
