Skip to contents

Find game_pk values for professional baseball games (major and minor leagues) that are tied

Usage

mlb_schedule_games_tied(season = 2021, game_type = "S")

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

game_type_idgame_type_description
SSpring Training
RRegular Season
FWild Card Game
DDivision Series
LLeague Championship Series
WWorld Series
CChampionship
NNineteenth Century Series
PPlayoffs
AAll-Star Game
IIntrasquad
EExhibition

Value

Returns a tibble that includes game_pk values and additional information for games scheduled or played

col_nametypes
datecharacter
total_itemsinteger
total_eventsinteger
total_gamesinteger
total_games_in_progressinteger
game_pkinteger
linkcharacter
game_typecharacter
seasoncharacter
game_datecharacter
official_datecharacter
game_numberinteger
public_facinglogical
double_headercharacter
gameday_typecharacter
tiebreakercharacter
calendar_event_idcharacter
season_displaycharacter
day_nightcharacter
scheduled_inningsinteger
reverse_home_away_statuslogical
inning_break_lengthinteger
games_in_seriesinteger
series_game_numberinteger
series_descriptioncharacter
record_sourcecharacter
if_necessarycharacter
if_necessary_descriptioncharacter
status_abstract_game_statecharacter
status_coded_game_statecharacter
status_detailed_statecharacter
status_status_codecharacter
status_start_time_tbdlogical
status_reasoncharacter
status_abstract_game_codecharacter
teams_away_split_squadlogical
teams_away_series_numberinteger
teams_away_league_record_winsinteger
teams_away_league_record_lossesinteger
teams_away_league_record_pctcharacter
teams_away_team_idinteger
teams_away_team_namecharacter
teams_away_team_linkcharacter
teams_home_split_squadlogical
teams_home_series_numberinteger
teams_home_league_record_winsinteger
teams_home_league_record_lossesinteger
teams_home_league_record_pctcharacter
teams_home_team_idinteger
teams_home_team_namecharacter
teams_home_team_linkcharacter
venue_idinteger
venue_namecharacter
venue_linkcharacter
content_linkcharacter
is_tielogical
descriptioncharacter
teams_away_scoreinteger
teams_away_is_winnerlogical
teams_home_scoreinteger
teams_home_is_winnerlogical
reschedule_datecharacter
reschedule_game_datecharacter
rescheduled_fromcharacter
rescheduled_from_datecharacter
resume_datecharacter
resume_game_datecharacter
resumed_fromcharacter
resumed_from_datecharacter
eventslist

Examples

# \donttest{
  try(mlb_schedule_games_tied(season = 2021))
#> ── MLB Schedule - Games Tied data from MLB.com ────── baseballr 1.2.0 ──
#>  Data updated: 2022-04-30 07:16:32 UTC
#> # A tibble: 46 × 59
#>    date    total_items total_events total_games total_games_in_… game_pk
#>    <chr>         <int>        <int>       <int>            <int>   <int>
#>  1 2021-0…           1            0           1                0  641924
#>  2 2021-0…           4            0           4                0  642190
#>  3 2021-0…           4            0           4                0  641697
#>  4 2021-0…           4            0           4                0  641634
#>  5 2021-0…           4            0           4                0  641587
#>  6 2021-0…           3            0           3                0  641540
#>  7 2021-0…           3            0           3                0  641990
#>  8 2021-0…           3            0           3                0  641627
#>  9 2021-0…           2            0           2                0  642125
#> 10 2021-0…           2            0           2                0  642129
#> # … with 36 more rows, and 53 more variables: link <chr>,
#> #   game_type <chr>, season <chr>, game_date <chr>,
#> #   official_date <chr>, is_tie <lgl>, game_number <int>,
#> #   public_facing <lgl>, double_header <chr>, gameday_type <chr>,
#> #   tiebreaker <chr>, calendar_event_id <chr>, season_display <chr>,
#> #   day_night <chr>, scheduled_innings <int>,
#> #   reverse_home_away_status <lgl>, games_in_series <int>, …
# }