Skip to content
Snippets Groups Projects
Commit ac679697 authored by Laura A DeCicco's avatar Laura A DeCicco
Browse files

Updated help files.

parent bf0fc957
No related branches found
No related tags found
No related merge requests found
......@@ -14,9 +14,10 @@
#' @examples
#' # Examples of how to use getDataFromFile:
#' # Change the file path and file name to something meaningful:
#' filePath <- '~/RData/' # Sample format
#' filePath <- system.file("extdata", package="dataRetrieval")
#' filePath <- paste(filePath,"/",sep="")
#' fileName <- 'ChoptankRiverFlow.txt'
#' \dontrun{getDataFromFile(filePath,fileName, separator="\t")}
#' getDataFromFile(filePath,fileName, separator="\t")
getDataFromFile <- function (filePath,fileName,hasHeader=TRUE,separator=","){
totalPath <- paste(filePath,fileName,sep="");
tmp <- read.delim(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment