Skip to contents

Save processed data to a file

Usage

save_data(data, output_path)

Arguments

data

A data frame to be saved.

output_path

A string specifying the output file path.

Value

Nothing. Saves the data to a file.

Examples

if (FALSE) { # \dontrun{
save_data(mtcars, "data/clean/mtcars-cleaned.csv")
} # }