Description Usage Details Author(s) Examples
Get One to Many Values that Led to a Prior Error
1 |
If assert_one_to_one()
detects an issue, the one to many values are stored
in a dataset. This dataset can be retrieved by get_one_to_many_dataset()
.
Note that the function always returns the one to many values from the last
error that has been thrown in the current R session. Thus, after restarting
the R sessions get_one_to_many_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).
Stefan Bundfuss
1 2 3 4 5 6 7 | data(adsl)
try(
assert_one_to_one(adsl, vars(STUDYID), vars(SITEID))
)
get_one_to_many_dataset()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.