Description Usage Arguments Value Examples
Check for missing LPI points
1 2 | LpiQcMissingPoints(conn, path.to.data, park, spring, field.season,
data.source = "database", points = seq(0.5, 15, 0.5))
|
conn |
Database connection generated from call to |
path.to.data |
The directory containing the csv data exports generated from |
park |
Optional. Four-letter park code to filter on, e.g. "MOJA". |
spring |
Optional. Spring code to filter on, e.g. "LAKE_P_BLUE0". |
field.season |
Optional. Field season name to filter on, e.g. "2019". |
data.source |
Character string indicating whether to access data in the spring veg database ( |
points |
Vector representing the expected points on a transect. Defaults to |
A tibble with columns Park, SpringCode, SpringName, VisitType, FieldSeason, StartDate, TransectNumber, LocationOnTape_m. Note that LocationOnTape_m is a comma-separated list of missing points.
1 2 3 4 5 6 7 8 | ## Not run:
conn <- OpenDatabaseConnection()
LpiQcMissingPoints(conn, park = "LAKE")
LpiQcMissingPoints(conn, spring = "LAKE_P_BLUE0", field.season = "2019")
LpiQcMissingPoints(path.to.data = "path/to/data", data.source = "local")
CloseDatabaseConnection(conn)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.