Skip to contents

Load match-level metadata including venue, teams, toss, and officials.

Usage

load_fox_details(
  match_ids = NULL,
  format = NULL,
  gender = NULL,
  source = c("local", "remote")
)

Arguments

match_ids

Integer or numeric vector. Filter for specific match IDs. If NULL, loads all.

format

Character. Format filter (e.g., "bbl", "test"). If NULL, loads all formats.

gender

Character. "male", "female", or NULL (all genders). Filters directly on the gender column.

source

Character. "local" (default) or "remote".

Value

Data frame of match details.

Examples

if (FALSE) { # \dontrun{
# All BBL match details
bbl <- load_fox_details(format = "bbl")

# Women's matches only
womens <- load_fox_details(gender = "female")
} # }