Nothing
#' Generate a Report of Differences Found in Dataset Comparison
#'
#' @description
#' Creates a formatted report summarizing all differences found between two data frames,
#' including column-level and value-level differences.
#'
#' @param variable_diffs A data frame or list detailing the differences found in variables.
#' @param observation_diffs A data frame or list detailing the differences found in observations.
#' @return A structured report of the differences, typically a list or a data frame.
#' @keywords internal
report_differences <- function(variable_diffs, observation_diffs) {
report <- list()
if (!is.null(variable_diffs)) {
report$variable_differences <- variable_diffs
}
if (!is.null(observation_diffs)) {
report$observation_differences <- observation_diffs
}
report
}
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.