Get men's college basketball NET rankings for the current date from the NCAA website
Source:R/ncaa_mbb_data.R
ncaa_mbb_NET_rankings.Rd
Get men's college basketball NET rankings for the current date from the NCAA website
Examples
# Get current NCAA NET rankings
# \donttest{
try(ncaa_mbb_NET_rankings())
#> ── NCAA MBB NET Rankings Information from ESPN.com ────────────── hoopR 2.1.0 ──
#> ℹ Data updated: 2023-11-28 22:14:53 UTC
#> # A tibble: 363 × 12
#> rank previous school conference record road neutral home quad_1 quad_2
#> <int> <int> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 1 1 Houston AAC 33-4 11-0 6-2 16-2 8-3 8-0
#> 2 2 2 Alabama SEC 31-6 9-3 7-3 15-0 13-6 7-0
#> 3 3 8 UConn Big East 31-8 6-5 10-1 15-2 12-7 8-0
#> 4 4 3 UCLA Pac-12 31-6 9-2 5-4 17-0 7-6 9-0
#> 5 5 4 Tennessee SEC 25-11 4-6 7-3 14-2 7-8 5-3
#> 6 6 5 Purdue Big Ten 29-6 8-3 7-1 14-2 12-3 7-2
#> 7 7 7 Texas Big 12 29-9 4-6 8-2 17-1 16-9 4-0
#> 8 8 6 Gonzaga WCC 30-6 7-2 9-3 14-1 8-5 5-0
#> 9 9 9 Kansas Big 12 28-8 7-4 6-3 15-1 16-8 6-0
#> 10 10 10 Arizona Pac-12 28-7 6-4 7-1 15-2 8-2 7-4
#> # ℹ 353 more rows
#> # ℹ 2 more variables: quad_3 <chr>, quad_4 <chr>
# }