Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the title and description #140

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions R/match-statistics.R
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
#' @name match_statistics
#' @aliases match_statistics match_statistics_display
#' @export match_statistics match_statistics_display
#' @title Create explicit factor level for missing values.
#'
#' @description Missing values are converted to a factor level.
#' This explicit assignment can reduce the chances
#' that missing values are inadvertently ignored.
#' It also allows the presence of a missing to become a predictor in models.
#' @title Assess the quality of a join between two dataframes.
#'
#' @description This function compares contents of two joined dataframes.
#' It assesses the (1) overlap, (2) difference, and (3) missingness between the two [data.frame]s.
#' It is similar to a Venn diagram, but in a tabular format.
#'
#' @param d_parent A `data.frame` of the parent table.
#' @param d_child A `data.frame` of the child table.
Expand Down
Loading