Skip to contents

A wrapper for write_csv that adds a project-level log with pertinent info into file_log.csv [Stable]

Usage

ic_write_csv_wlog(x, file, ...)

Arguments

x

A data frame or tibble to write to disk.

file

File or connection to write to.

...

Additional arguments from readr::write_csv()

Value

starting or adding a file_log.csv at project-level, as well as saving csv as expected

Details

Write csv with log

Examples

if (FALSE) {
df <- data.frame(fishes <- c("red", "white", "blue"))
ic_write_csv_wlog(df, tempfile())
}