mlb_attendance {baseballr} | R Documentation |
MLB Attendance
Description
MLB Attendance
Usage
mlb_attendance(
team_id = NULL,
league_id = NULL,
season = NULL,
date = NULL,
league_list_id = NULL
)
Arguments
team_id |
Return attendance information for a particular team_id(s). |
league_id |
Return attendance information for a particular league_id(s). Format: '103,104' |
season |
Return attendance information for particular year(s). |
date |
Return attendance information on a particular date. Format: MM/DD/YYYY |
league_list_id |
Unique league list identifier to return a directory of attendance for a specific league list_id Valid values include:
|
Value
Returns a tibble with the following columns
col_name | types |
openings_total | integer |
openings_total_away | integer |
openings_total_home | integer |
openings_total_lost | integer |
games_total | integer |
games_away_total | integer |
games_home_total | integer |
year | character |
attendance_average_away | integer |
attendance_average_home | integer |
attendance_average_ytd | integer |
attendance_high | integer |
attendance_high_date | character |
attendance_low | integer |
attendance_low_date | character |
attendance_opening_average | integer |
attendance_total | integer |
attendance_total_away | integer |
attendance_total_home | integer |
attendance_high_game_game_pk | integer |
attendance_high_game_link | character |
attendance_high_game_day_night | character |
attendance_high_game_content_link | character |
attendance_low_game_game_pk | integer |
attendance_low_game_link | character |
attendance_low_game_day_night | character |
attendance_low_game_content_link | character |
game_type_id | character |
game_type_description | character |
team_id | integer |
team_name | character |
team_link | character |
Examples
try(mlb_attendance(team_id = 109, season = 2021))
[Package baseballr version 1.6.0 Index]