#' Saving the data to a file
#' @param path The destination path file
#' @param data The array of lines
#' @examples
#' data <- readData(path)
#' saveFile(newPath, data)
saveFile <- function(path, data){
fileConnection <- file(path)
writeLines(data, fileConnection)
close(fileConnection)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.