Skip to contents

Load innings-level summaries from local DuckDB or remote GitHub releases. Includes target info, super over flags, and absent hurt data.

Usage

load_innings(
  match_type = "all",
  gender = "all",
  match_ids = NULL,
  source = c("local", "remote")
)

Arguments

match_type

Character or vector. Filter by match type.

gender

Character. "male", "female", or "all".

match_ids

Character vector. Filter for specific matches.

source

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

Value

Data frame of innings summaries.

Examples

if (FALSE) { # \dontrun{
innings <- load_innings()
t20_innings <- load_innings(match_type = "T20")
} # }