View source: R/coordUncerFlagR.R
coordUncerFlagR | R Documentation |
To use this function, the user must choose a column, probably "coordinateUncertaintyInMeters" and a threshold above which occurrences will be flagged for geographic uncertainty.
coordUncerFlagR(
data = NULL,
uncerColumn = "coordinateUncertaintyInMeters",
threshold = NULL
)
data |
A data frame or tibble. Occurrence records as input. |
uncerColumn |
Character. The column to flag uncertainty in. |
threshold |
Numeric. The uncertainty threshold. Values equal to, or greater than, this threshold will be flagged. |
The input data with a new column, .uncertaintyThreshold.
# Run the function
beesRaw_out <- coordUncerFlagR(data = beesRaw,
uncerColumn = "coordinateUncertaintyInMeters",
threshold = 1000)
# View the output
table(beesRaw_out$.uncertaintyThreshold, useNA = "always")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.