get_many_to_one_dataset | R Documentation |
Get Many to One Values that Led to a Prior Error
get_many_to_one_dataset()
If assert_one_to_one()
detects an issue, the many to one values are stored
in a dataset. This dataset can be retrieved by get_many_to_one_dataset()
.
Note that the function always returns the many to one values from the last
error that has been thrown in the current R session. Thus, after restarting
the R sessions get_many_to_one_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).
A data.frame
or NULL
Utilities for Dataset Checking:
get_duplicates_dataset()
,
get_one_to_many_dataset()
library(admiraldev, warn.conflicts = FALSE)
data(admiral_adsl)
try(
assert_one_to_one(admiral_adsl, exprs(SITEID), exprs(STUDYID))
)
get_many_to_one_dataset()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.