Skip to contents

This function saves search results to a file.

Usage

save_results(results, file_path, format = c("csv", "rds", "xlsx"))

Arguments

results

A data frame containing search results.

file_path

File path to save the results.

format

File format to use. One of "csv", "rds", or "xlsx".

Value

The file path (invisibly).

Examples

if (FALSE) { # \dontrun{
save_results(search_results, file_path = "search_results.csv")
} # }