Skip to contents

[Experimental]

Retrieve contextual information about games. Outputs may be required as arguments of other getGame* functions

Usage

getGameHeader(season_code, game_code)

getGamePlayers(season_code, game_code, team_code)

getGameRound(season_code, game_code)

Arguments

season_code

One or more season codes as obtained from getCompetitionHistory().
Examples are E2023 for Euroleague or U2023 for Eurocup 2023.

game_code

One or more game codes as obtained from getCompetitionGames().

team_code

One or more team codes as obtained from getCompetitionTeams().
Examples are ASV, MAD, ...

Value

For each function, returns a tibble with information about header, player or round of chosen season and game code.

Examples


if (FALSE) {

getGameHeader(season_code = c("E2023", "U2023"), game_code = 1)

getGamePlayers(season_code = c("E2023", "U2023"), team_code = "ASV", game_code = 1)

getGameRound(season_code = c("E2023", "U2023"), game_code = 1)

}