View source: R/bdc_summary_col.R
bdc_summary_col | R Documentation |
This function creates or updates the column ".summary" summarizing the results of data quality tests (i.e., columns starting with "."). Records that have failed in at least one test are flagged for further inspection (i.e., flagged as "FALSE") in the ".summary" column.
bdc_summary_col(data)
data |
data.frame. Containing the results of data quality tests (i.e., columns starting with "."). |
If existing, the column ".summary" will be removed and then updated considering all test names available in the supplied database.
A data.frame containing a new or an updated column ".summary".
.missing_names <- c(TRUE, TRUE, TRUE, FALSE, FALSE)
.missing_coordinates <- c(TRUE, FALSE, FALSE, TRUE, FALSE)
x <- data.frame(.missing_names, .missing_coordinates)
bdc_summary_col(data = x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.