R/write-template-points.R

#' Write a .csv file with template points summary
#'
#' Writes a file with your template points summary to your current working directory
#'
#' `write_template_points` provides a pipeable wrapper to `write.csv` with a standard filename output of "template_points_summary".
#'
#' @export

write_template_points <- function(template_points){
  write.csv(template_points, "template_points_summary.csv")
}
plduffy/rsoomo documentation built on May 26, 2019, 12:32 a.m.