Nothing
#' Extract summary from data quality results
#'
#' Generic function, currently supports [dq_report2] and [dataquieR_result]
#'
#' @param r [dq_report2] or [dataquieR_result] object
#' @param ... further arguments, maybe needed for some implementations
#'
#' @export
#' @return [list] with two slots `Data` and `Table` with [data.frame]s
#' featuring all metrics columns
#' from the report or result in `x`,
#' the [STUDY_SEGMENT] and the [VAR_NAMES].
#' In case of `Data`, the columns are formatted nicely but still
#' with the standardized column names -- use
#' `util_translate_indicator_metrics()` to rename them nicely. In
#' case of `Table`, just as they are.
#' @family summary_functions
prep_extract_summary <- function(r,
...) {
te <- topenv(parent.frame(1)) # see https://stackoverflow.com/a/27870803
if (!(isNamespace(te) && getNamespaceName(te) == "dataquieR")) {
lifecycle::deprecate_soft("2.1.0.9007",
"prep_extract_summary()",
"summary()")
}
UseMethod("prep_extract_summary")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.