#' myread function from Lab 2
#'
#' Reads in csv and takes in data
#'
#' @param csv
#'
#' @return
#' @export
#'
#' @examples
myread=function(csv){
fl=paste(dird,csv,sep="")
read.table(fl,header=TRUE,sep=",")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.