get_duplicates_dataset: Get Duplicate Records that Lead to a Prior Error

Description Usage Details Author(s) Examples

View source: R/duplicates.R

Description

Get Duplicate Records that Lead to a Prior Error

Usage

1

Details

Many admiral function check that the input dataset contains only one record per by_vars group and throw an error otherwise. The get_duplicates_dataset() function allows one to retrieve the duplicate records that lead to an error.

Note that the function always returns the dataset of duplicates from the last error that has been thrown in the current R session. Thus, after restarting the R sessions get_duplicates_dataset() will return NULL and after a second error has been thrown, the dataset of the first error can no longer be accessed (unless it has been saved in a variable).

Author(s)

Thomas Neitmann

Examples

1
2
3
4
5
6
7
8
data(adsl)

# Duplicate the first record
adsl <- rbind(adsl[1L, ], adsl)

signal_duplicate_records(adsl, vars(USUBJID), cnd_type = "warning")

get_duplicates_dataset()

epijim/admiral documentation built on Feb. 13, 2022, 12:15 a.m.