Skip to contents

Returns the long-format ranked teams for one (season x season-type x week x ranking-source). WNBA typically returns an empty tibble.

Usage

espn_wnba_week_ranking(
  ranking_id,
  week,
  season = most_recent_wnba_season(),
  season_type = 2L,
  ...
)

Arguments

ranking_id

Ranking source id (1 = AP, 2 = Coaches, etc.).

week

Week number.

season

Season year. Defaults to most recent WNBA season.

season_type

Season-type id (2 = regular (default)).

...

Additional arguments; currently unused.

Value

A tibble with one row per ranked team (typically 25).

col_nametypesdescription
leaguecharacterLeague slug.
seasonintegerSeason year.
season_typeintegerSeason-type id.
weekintegerWeek number.
ranking_idcharacterESPN ranking id.
namecharacterRanking name (e.g. "AP Top 25").
short_namecharacterShort name.
typecharacterRanking type code.
headlinecharacterFull headline.
datecharacterDate of the ranking.
currentintegerCurrent rank.
previousintegerPrevious-week rank.
pointsnumericVoting points.
first_place_votesintegerFirst-place vote count.
trendcharacterTrend indicator (e.g. "+3", "-2", "-").
record_summarycharacterTeam's record at time of poll (e.g. "20-2").
team_idcharacterESPN team id.
team_refcharacter$ref to the team-in-season resource.
last_updatedcharacterLast-updated timestamp.

Details

Get ESPN WNBA Per-Week Ranking Detail

See also

Other ESPN WNBA Functions: espn_wnba_athlete_awards(), espn_wnba_athlete_career_stats(), espn_wnba_athlete_eventlog(), espn_wnba_athlete_eventlog_v2(), espn_wnba_athlete_gamelog(), espn_wnba_athlete_info(), espn_wnba_athlete_overview(), espn_wnba_athlete_seasons(), espn_wnba_athlete_splits(), espn_wnba_athlete_statisticslog(), espn_wnba_athlete_stats(), espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_event_broadcasts(), espn_wnba_event_competitor_leaders(), espn_wnba_event_competitor_linescores(), espn_wnba_event_competitor_records(), espn_wnba_event_competitor_roster(), espn_wnba_event_competitor_roster_entry(), espn_wnba_event_competitor_score(), espn_wnba_event_competitor_statistics(), espn_wnba_event_odds(), espn_wnba_event_official_detail(), espn_wnba_event_officials(), espn_wnba_event_play(), espn_wnba_event_play_personnel(), espn_wnba_event_player_box(), espn_wnba_event_powerindex(), espn_wnba_event_predictor(), espn_wnba_event_probabilities(), espn_wnba_event_propbets(), espn_wnba_event_situation(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_rosters(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_box(), espn_wnba_player_stats(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_rankings()

Author

Saiem Gilani

Examples

# \donttest{
  espn_wnba_week_ranking(ranking_id = 1, week = 5, season = 2025)
#>  2026-05-22 07:31:12.793958: Failed to retrieve ESPN wnba week-5 ranking 1 for season=2025
#>  Args: league = "wnba", season = 2025, season_type = 2L, week = 5, ranking_id = 1
#>  Error: The API returned an error
#> NULL
# }