Find game_pk values for professional baseball postseason games (major and minor leagues)
Source:R/mlb_schedule_postseason.R
mlb_schedule_postseason.Rd
Find game_pk values for professional baseball postseason games (major and minor leagues)
Usage
mlb_schedule_postseason(
season = 2021,
game_type = NULL,
series_number = NULL,
sport_id = 1,
team_id = NULL
)
Arguments
- season
The season for which you want to find game_pk values for MLB games
- game_type
game_type to return schedule information for all tied games in a particular game_type
- series_number
The Series number to return schedule information for all tied games in a particular series number
- sport_id
The sport_id to return schedule information for.
- team_id
The team_id to return schedule information for.
game_type_id game_type_description S Spring Training R Regular Season F Wild Card Game D Division Series L League Championship Series W World Series C Championship N Nineteenth Century Series P Playoffs A All-Star Game I Intrasquad E Exhibition
Value
Returns a tibble that includes game_pk values and additional information for games scheduled or played
col_name | types |
date | character |
total_items | integer |
total_events | integer |
total_games | integer |
total_games_in_progress | integer |
game_pk | integer |
link | character |
game_type | character |
season | character |
game_date | character |
official_date | character |
is_tie | logical |
is_featured_game | logical |
game_number | integer |
public_facing | logical |
double_header | character |
gameday_type | character |
tiebreaker | character |
calendar_event_id | character |
season_display | character |
day_night | character |
description | character |
scheduled_innings | integer |
reverse_home_away_status | logical |
games_in_series | integer |
series_game_number | integer |
series_description | character |
record_source | character |
if_necessary | character |
if_necessary_description | character |
status_abstract_game_state | character |
status_coded_game_state | character |
status_detailed_state | character |
status_status_code | character |
status_start_time_tbd | logical |
status_abstract_game_code | character |
teams_away_score | integer |
teams_away_is_winner | logical |
teams_away_split_squad | logical |
teams_away_series_number | integer |
teams_away_league_record_wins | integer |
teams_away_league_record_losses | integer |
teams_away_league_record_pct | character |
teams_away_team_id | integer |
teams_away_team_name | character |
teams_away_team_link | character |
teams_home_score | integer |
teams_home_is_winner | logical |
teams_home_split_squad | logical |
teams_home_series_number | integer |
teams_home_league_record_wins | integer |
teams_home_league_record_losses | integer |
teams_home_league_record_pct | character |
teams_home_team_id | integer |
teams_home_team_name | character |
teams_home_team_link | character |
venue_id | integer |
venue_name | character |
venue_link | character |
content_link | character |
inning_break_length | integer |
reschedule_date | character |
reschedule_game_date | character |
status_reason | character |
rescheduled_from | character |
rescheduled_from_date | character |
is_default_game | logical |
events | list |
Examples
# \donttest{
try(mlb_schedule_postseason(season = 2021))
#> ── MLB Schedule - Post-season data from MLB.com ───── baseballr 1.6.0 ──
#> ℹ Data updated: 2024-04-13 21:56:44 UTC
#> # A tibble: 38 × 68
#> date total_items total_events total_games total_games_in_progr…¹
#> <chr> <int> <int> <int> <int>
#> 1 2021-10-… 1 0 1 0
#> 2 2021-10-… 1 0 1 0
#> 3 2021-10-… 2 0 2 0
#> 4 2021-10-… 2 0 2 0
#> 5 2021-10-… 4 0 4 0
#> 6 2021-10-… 4 0 4 0
#> 7 2021-10-… 4 0 4 0
#> 8 2021-10-… 4 0 4 0
#> 9 2021-10-… 2 0 2 0
#> 10 2021-10-… 2 0 2 0
#> # ℹ 28 more rows
#> # ℹ abbreviated name: ¹total_games_in_progress
#> # ℹ 63 more variables: game_pk <int>, game_guid <chr>, link <chr>,
#> # game_type <chr>, season <chr>, game_date <chr>,
#> # official_date <chr>, is_tie <lgl>, is_featured_game <lgl>,
#> # game_number <int>, public_facing <lgl>, double_header <chr>,
#> # gameday_type <chr>, tiebreaker <chr>, calendar_event_id <chr>, …
# }