Skip to contents

Get all tournament winners from a data file.

Usage

get_winners(year = NULL, file_path)

Arguments

year

Optional year filter

file_path

Path to data file (.rds or .parquet)

Value

Tibble with tournament winners

Examples

if (FALSE) { # \dontrun{
# Get all winners
get_winners(file_path = "golf_data.rds")

# Get 2025 winners
get_winners(2025, file_path = "golf_data.rds")
} # }