R/readfile.R

Defines functions rf1

Documented in rf1

#' Funtion: rf1 to read a csv file and display an excerpt
#' @export

rf1 <- function(infile){
	store <- read.csv(infile, header=T)
	print(paste("The input file is: ", infile))
	print(paste("Here are first few lines of this file "))
	head(store)
}	
qwangcode/gssg_qw documentation built on June 17, 2020, 12:34 a.m.