hoopR
hoopR copied to clipboard
espn_mbb_teams only returns 358 of 362 teams
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)