#' Reading Files into R
#'
#' This reads in a csv file from a directory and returns a data frame.
#'
#' @param csv
#'
#' @return data frame containing the data
#' @export
#'
#' @examples
#' myread('DDT.csv')
myread=function(csv)
{
read.table(csv,header=TRUE,sep=",")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.