
Get men's college basketball AP and Coaches Poll rankings from ESPN
Source:R/espn_mbb_data.R
espn_mbb_rankings.RdGet men's college basketball AP and Coaches Poll rankings from ESPN
Value
Returns a tibble
| col_name | types |
| id | integer |
| name | character |
| short_name | character |
| type | character |
| headline | character |
| short_headline | character |
| current | integer |
| previous | integer |
| points | numeric |
| first_place_votes | integer |
| trend | character |
| date | character |
| last_updated | character |
| record_summary | character |
| team_id | integer |
| team_uid | character |
| team_location | character |
| team_name | character |
| team_nickname | character |
| team_abbreviation | character |
| team_color | character |
| team_logo | character |
| occurrence_number | integer |
| occurrence_type | character |
| occurrence_last | logical |
| occurrence_value | character |
| occurrence_display_value | character |
| season_year | integer |
| season_start_date | character |
| season_end_date | character |
| season_display_name | character |
| season_type_type | integer |
| season_type_name | character |
| season_type_abbreviation | character |
| season_futures_ref | character |
| first_occurrence_type | character |
| first_occurrence_value | character |
See also
Other ESPN MBB Functions:
espn_mbb_betting(),
espn_mbb_conferences(),
espn_mbb_game_all(),
espn_mbb_game_rosters(),
espn_mbb_pbp(),
espn_mbb_player_box(),
espn_mbb_player_stats(),
espn_mbb_scoreboard(),
espn_mbb_standings(),
espn_mbb_team_box(),
espn_mbb_team_stats(),
espn_mbb_teams(),
espn_mbb_wp()
Examples
# Get current AP and Coaches Poll rankings
# \donttest{
try(espn_mbb_rankings())
#> ── ESPN MBB Rankings Information from ESPN.com ────────────────── hoopR 2.1.0 ──
#> ℹ Data updated: 2023-11-28 22:09:53 UTC
#> # A tibble: 101 × 38
#> id name short_name type headline short_headline current previous points
#> <int> <chr> <chr> <chr> <chr> <chr> <int> <int> <dbl>
#> 1 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 1 2 1572
#> 2 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 2 3 1467
#> 3 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 3 4 1418
#> 4 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 4 5 1411
#> 5 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 5 1 1312
#> 6 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 6 6 1289
#> 7 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 7 9 1194
#> 8 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 8 10 1031
#> 9 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 9 13 1030
#> 10 1 AP To… AP Poll ap 2024 NC… 2024 : Week 4 10 7 967
#> # ℹ 91 more rows
#> # ℹ 29 more variables: first_place_votes <int>, trend <chr>, date <chr>,
#> # last_updated <chr>, record_summary <chr>, team_id <int>, team_uid <chr>,
#> # team_location <chr>, team_name <chr>, team_nickname <chr>,
#> # team_abbreviation <chr>, team_color <chr>, team_logos <list>,
#> # team_logo <chr>, occurrence_number <int>, occurrence_type <chr>,
#> # occurrence_last <lgl>, occurrence_value <chr>, …
# }