R/get_plot_file_name.R

Defines functions get_plot_file_name

Documented in get_plot_file_name

#' Get plot file name
#' @param patient character string with patient ID
#' @param question character string with question (see get_questions())
#' @param filetype character string with filetype (default is png)
get_plot_file_name <- function(patient, question, filetype = "png") {
  
  paste0("Patient ", patient, " - ", question, ".", filetype)
  
}
kristian-bak/rumination documentation built on Oct. 31, 2022, 6:44 p.m.