Skip to contents

Save tournament data to an RDS file.

Usage

save_to_rds(data, file_path, append = TRUE)

Arguments

data

Tibble of tournament data

file_path

Path to RDS file. Must be specified by user.

append

If TRUE, append to existing data

Value

Invisible NULL. Called for side effects (writes to file).

Examples

if (FALSE) { # \dontrun{
masters <- load_tournament(2025, "Masters")
save_to_rds(masters, file_path = tempfile(fileext = ".rds"))
} # }