Skip to contents

MLB Team Personnel

Usage

mlb_team_personnel(team_id = NULL, date = NULL)

Arguments

team_id

Team ID to return team coach information for.

date

Date to return team coach information for.

Value

Returns a tibble with the following columns

col_nametypes
jersey_numbercharacter
jobcharacter
job_idcharacter
titlecharacter
person_idinteger
person_full_namecharacter
person_linkcharacter

Examples

# \donttest{
  try(mlb_team_personnel(team_id = 137, date = "08/28/2016"))
#> ── MLB Team Personnel data from MLB.com ───────────── baseballr 1.6.0 ──
#>  Data updated: 2024-04-13 21:56:51 UTC
#> # A tibble: 14 × 7
#>    jersey_number job             job_id title person_id person_full_name
#>    <chr>         <chr>           <chr>  <chr>     <int> <chr>           
#>  1 ""            General Manager GMGR   Gene…    699624 Bobby Evans     
#>  2 ""            Special Assist… SASF   Spec…    123516 Shane Turner    
#>  3 ""            Head Athletic … HATR   Seni…    599861 Dave Groeschner 
#>  4 ""            Assistant Trai… ATRA   Head…    579868 Anthony Reyes   
#>  5 ""            Strength and C… SCCC   Stre…    580105 Carl Kochan     
#>  6 ""            Physical Thera… PTHR   Phys…    580103 Tony Reale      
#>  7 ""            Director of Te… DTET   Seni…    640157 Bret Alexander  
#>  8 ""            Equipment Mana… EQUP   Equi…    599864 Mike Murphy     
#>  9 ""            Coordinator, O… CORT   Coor…    599866 Michael Scardino
#> 10 ""            Coordinator, B… CBAS   Coor…    112724 Henry Cotto     
#> 11 ""            Coordinator, C… CCAT   Coor…    118267 Kirt Manwaring  
#> 12 ""            Coordinator, P… CPIT   Coor…    111351 Bert Bradley    
#> 13 ""            Strength and C… SCCR   Stre…    580104 Geoff Head      
#> 14 ""            Assistant Trai… ATRA   Assi…    599862 Mark Gruesbeck  
#> # ℹ 1 more variable: person_link <chr>
# }