getTeam {euroleaguer} | R Documentation |
Retrieve contextual information about teams.
Outputs may be required as arguments of other getTeam*
or getPlayer*
functions.
getTeam(season_code, team_code)
getTeamPeople(season_code, team_code)
getTeamGames(season_code, team_code)
season_code |
One or more season codes as obtained from |
team_code |
One or more team codes as obtained from |
For each function, returns a tibble with information about team, people or games of chosen season and team code.
## Not run:
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)
## End(Not run)