Description Usage Arguments Examples
Parses AWUDS excel files into R data frames.
1 2 3 4 5 | parseExport(file_path, citations = FALSE)
parseEnteredElements(file_path)
parseCompareData(file_path)
|
file_path |
chr, path to the excel file (including file extension) |
citations |
logical, citations were included as part of the output for Export data |
1 2 3 4 5 6 7 8 9 10 11 12 | folderPath <- system.file("extdata/excel_test", package="wateRuse")
exportData <- parseExport(file.path(folderPath,"Export_2010_County.xlsx"),citation=TRUE)
TP <- exportData[["TP"]]
PO <- exportData[["PO"]]
folderPath <- system.file("extdata", package="wateRuse")
exportData2010 <- parseExport(file.path(folderPath,"Import_2010_County-3_0805A.xlsx"),citation=TRUE)
LI <- exportData2010[["LI"]]
path <- system.file("extdata", package="wateRuse")
enteredData <- parseEnteredElements(file.path(path,"Entered-Data_2005.xlsx"))
path <- system.file("extdata", package="wateRuse")
compareData <- parseCompareData(file.path(path, "CompareData.xlsx"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.