R/read.R

#' Read in a DataShop Student-Step rollup file
#'
#' @param file.name The name of the file to read in.
#' @export
ds.read <- function(file.name) {
  return(read.csv(file = file.name,sep="\t",check.names=FALSE,na.strings = c(""," ","#N/A","NA")))
}
eharpste/ds.plot documentation built on June 5, 2019, 8:32 a.m.