View source: R/contin_import_v3.R
contin_import_v3 | R Documentation |
Retrieve monitoring results from Oregon DEQ's continuous data submission template xlsx file v3. This function will read the template and return a list with each list element holding a dataframe of the information for each spreadsheet. Any rows with all NAs are removed.
contin_import_v3(
file,
sheets = c("Organization_Details", "Projects", "Monitoring_Locations", "Deployment",
"New_Equipment", "Results", "PrePost", "Audit_Data")
)
file |
The path and file name to template xlsx file. |
sheets |
Optional vector identifying sheets to import. Default is a vector of all sheets to be imported. Acceptable values include "Organization_Details", "Projects", "Monitoring_Locations", "Deployment", "New_Equipment", "Results", "PrePost", and "Audit_Data". |
The function returns a named list holding each worksheet from the xlsx. The name of each list element is the same as the xlsx:
Organization_Details
Projects
Monitoring_Locations
Deployment
New_Equipment
Results
PrePost
Audit_Data
Column names are made into syntactically valid names acceptable by R.
This function relies heavily upon the readxl
package.
list of each continuous template data
read_excel
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.