Skip to contents

Load match-level metadata including venue, teams, officials, and Hawkeye source information.

Usage

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

Arguments

match_ids

Character vector. Filter for specific match IDs. If NULL, loads all.

format

Character. "t20i", "odi", "test", or NULL (all formats).

gender

Character. "male", "female", or NULL (all genders).

source

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

Value

Data frame of match metadata.

Examples

if (FALSE) { # \dontrun{
match <- load_cricinfo_match(match_ids = "1502145")
t20_matches <- load_cricinfo_match(format = "t20i")
} # }