Description Usage Arguments Value References Examples
View source: R/check_assertions.R
This provides a data.frame detailing the assertions that are found
in a dataset returned from occurrences
.
1 |
x |
list: an object returned from |
A dataframe of assertions column names, descriptions and categories/error codes. If no assertions are in the dataset, NULL is returned.
https://api.ala.org.au/, https://biocache-ws.ala.org.au/ws/assertions/codes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Not run:
##download species data with all possible assertions
x <- occurrences(taxon="golden bowerbird", download_reason_id=10,
qa=ala_fields("assertions")$name)
asserts <- check_assertions(x)
## this is a data.frame of assertions, their description and column names
## list the descriptions of all (current) assertions
asserts$description
## assertion columns from data
tmp <- x$data[, names(x$data) %in% asserts$name]
which(colSums(tmp) > 0) ## discard those not seen in the data
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.