R/write-to-file.R

Defines functions write_to_csv

#' @export
write_to_csv <- function(df, filename) {
  readr::write_csv(df, paste0(getwd(),"/data/",filename,".csv"))
}
IsaacVerm/scoresJpl documentation built on Dec. 7, 2019, 7:17 p.m.