hoopR icon indicating copy to clipboard operation
hoopR copied to clipboard

espn_mbb_teams only returns 358 of 362 teams

Open presnell opened this issue 4 months ago • 0 comments

The espn_mbb_teams function returns only 358 of the 362 NCAA men's basketball teams. Specifically, it misses these teams:

team_id team                              conference                                                                                   
2511    Queens University Royals          ASUN    
2330    Le Moyne Dolphins                 Northeast 
2815    Lindenwood Lions                  Ohio Valley            
88      Southern Indiana Screaming Eagles Ohio Valley

To reproduce, just do the obvious thing:

y <- espn_mbb_teams()
nrow(y)
y |> filter(team_id %in% c(2511, 2330, 2815, 88))    # Returns and empty data frame

Desktop (please complete the following information):

  • OS: linux (Ubuntu 22.04)
  • R version: 4.3.2 (with all packages updated)

presnell avatar Feb 16 '24 06:02 presnell