Skip to contents

MLB Teams History

Usage

mlb_team_history(team_ids = NULL, start_season = NULL, end_season = NULL)

Arguments

team_ids

The team_id(s) to return historical data for.

start_season

The start_season to return historical data for from the given year to present.

end_season

The end_season to return historical data for from the the creation to the given year.

Value

Returns a tibble with the following columns

col_nametypes
all_star_statuscharacter
team_idinteger
team_full_namecharacter
linkcharacter
seasoninteger
team_codecharacter
file_codecharacter
team_abbreviationcharacter
team_namecharacter
location_namecharacter
first_year_of_playcharacter
short_namecharacter
franchise_namecharacter
club_namecharacter
activelogical
venue_idinteger
venue_namecharacter
venue_linkcharacter
spring_venue_idinteger
spring_venue_linkcharacter
league_idinteger
league_namecharacter
league_linkcharacter
sport_idinteger
sport_linkcharacter
sport_namecharacter

Examples

# \donttest{
  try(mlb_team_history(team_ids = 147))
#> ── MLB Team History data from MLB.com ─────────────── baseballr 1.6.0 ──
#>  Data updated: 2024-04-13 21:56:50 UTC
#> # A tibble: 5 × 26
#>   all_star_status team_id team_full_name       link     season team_code
#>   <chr>             <int> <chr>                <chr>     <int> <chr>    
#> 1 N                   147 New York Yankees     /api/v1…   2009 nya      
#> 2 N                   147 New York Yankees     /api/v1…   1974 nya      
#> 3 N                   147 New York Yankees     /api/v1…   1923 nya      
#> 4 N                   147 New York Yankees     /api/v1…   1913 nya      
#> 5 N                   147 New York Highlanders /api/v1…   1903 nya      
#> # ℹ 20 more variables: file_code <chr>, team_abbreviation <chr>,
#> #   team_name <chr>, location_name <chr>, first_year_of_play <chr>,
#> #   short_name <chr>, franchise_name <chr>, club_name <chr>,
#> #   active <lgl>, venue_id <int>, venue_name <chr>, venue_link <chr>,
#> #   spring_venue_id <int>, spring_venue_link <chr>, league_id <int>,
#> #   league_name <chr>, league_link <chr>, sport_id <int>,
#> #   sport_link <chr>, sport_name <chr>
# }