Fetches ladder standings for a given season and league from a specified source.
Usage
fetch_ladder(
season,
league = c("nrl", "super_league", "championship", "league_one", "womens_super_league",
"qld_cup", "nsw_cup", "state_of_origin", "challenge_cup", "1895_cup"),
source = c("rugbyleagueproject", "nrl")
)
Arguments
- season
Integer. Season year (1998 or later).
- league
Character. One of: "nrl", "super_league", "championship", "league_one",
"womens_super_league", "qld_cup", "nsw_cup",
"state_of_origin", "challenge_cup", "1895_cup".
- source
Character. Either "rugbyleagueproject" or "nrl".
Value
A tibble with ladder standings and statistics.
Examples
fetch_ladder(2025, league = "nrl", source = "nrl")
fetch_ladder(2024, league = "super_league")