Write report CSV files
write_report_csv.Rd
write_report_csv
writes the given data to the specified folder with the
given filename.
Examples
# Create sample data
r_data <- data.frame(
Disease = c("Measles", "Chickenpox"),
Counts = c(20, 43)
)
# Write to temporary directory
write_report_csv(r_data, "report.csv", tempdir())