all_unique | R Documentation |
Checking if all values are unique can be a good step in QC to ensure entries are not duplicated. If passed a list, the input is first flattened (which may result in type casting).
all_unique(vec)
vec |
A vector or list. |
all_unique(c(2,1,3))
all_unique(c(1,1,2))
all_unique(list(1, "1", 2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.