Skip to contents

This is a very thin wrapper around readr::write_csv(). You can use that function directly for more control

Usage

write_image_data(image_data, file, na = "", ...)

Arguments

image_data

data.frame of class image_data, as read in by read_image_data().

file

path to the output csv file

na

How should missing values be written. Default empty ("")

...

other parameters passed on to readr::write_csv()

Value

input image_data, invisibly

Examples

if (FALSE) {
write_image_data(image_data, "my_spi_submission.xlsx")
write_image_data(image_data, "my_spi_submission.xlsx", Surveyor = surveyor,
   `Survey Observation Photos` = file)
}