grabQC | R Documentation |
grabQC()
lets you obtain subsets of the QC output
grabQC(
x,
what = c("dQC", "detections", "QCflags", "tag_meta", "rec_meta", "meas"),
flag = "all"
)
x |
a QC output object (a nested tibble with class |
what |
defined subset of the QC output is to be grabbed; either
|
flag |
specifies which quality controlled detections to return
(see examples): any combination of: |
a data frame with the requested subset of the QC output
## grab detections and QCflags from example QC output & return only the
## `valid` and `likely valid` detections
data(TownsvilleReefQC)
d.qc <- grabQC(TownsvilleReefQC, what = "dQC", flag = c("valid", "likely valid"))
## return all detections
d.qc <- grabQC(TownsvilleReefQC, what = "dQC")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.