Description Usage Arguments Value Author(s) Examples
Checks if two list inputs have the same names and same number of elements and issues a warning otherwise.
1 | warn_if_inconsistent_list(base, compare, list_name, i = 2)
|
base |
A named list |
compare |
A named list |
list_name |
A string the name of the list |
i |
the index id to compare the 2 lists |
a warning
if the 2 lists have different names or length
Samia Kabi
1 2 3 4 5 6 7 8 9 10 11 12 | # no warning
warn_if_inconsistent_list(
base = vars(DTHDOM = "DM", DTHSEQ = DMSEQ),
compare = vars(DTHDOM = "DM", DTHSEQ = DMSEQ),
list_name = "Test"
)
# warning
warn_if_inconsistent_list(
base = vars(DTHDOM = "DM", DTHSEQ = DMSEQ, DTHVAR = "text"),
compare = vars(DTHDOM = "DM", DTHSEQ = DMSEQ),
list_name = "Test"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.