Learn R Programming

nrlR (version 0.1.2)

fetch_ladder: Fetch Rugby League Ladder (main wrapper)

Description

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")
)

Value

A tibble with ladder standings and statistics.

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".

Examples

Run this code
fetch_ladder(2025, league = "nrl", source = "nrl")
fetch_ladder(2024, league = "super_league")

Run the code above in your browser using DataLab