Load tournament data from a Parquet file. Requires the arrow package.
Usage
load_from_parquet(file_path)
Arguments
- file_path
Path to Parquet file. Must be specified by user.
Value
A tibble with tournament leaderboard data containing columns such as
position, player name, scores, and tournament metadata.
Examples
if (FALSE) { # \dontrun{
data <- load_from_parquet(file_path = "my_golf_data.parquet")
} # }