Skip to contents

[Experimental]

Retrieve contextual information about teams. Outputs may be required as arguments of other getTeam* or getPlayer* functions.

Usage

getTeam(season_code, team_code)

getTeamPeople(season_code, team_code)

getTeamGames(season_code, team_code)

Arguments

season_code

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

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 team, people or games of chosen season and team code.

Examples


if (FALSE) {

getTeam(team_code = "ASV", season_code = c("E2023", "E2022")) |> head(5)

getTeamPeople(team_code = "ASV", season_code = c("E2023", "E2022")) |> head(5)

getTeamGames(team_code = "ASV", season_code = c("E2023", "E2022")) |> head(5)

}