unique_or_na | R Documentation |
If unique(x)
is a single value, return it; otherwise, return an NA of the
same type as x
. If x
is a factor, then the levels and ordered status
will be kept in either case. If x
is a non-atomic vector (i.e. a list),
then the logical NA
will be used.
unique_or_na(x)
x |
A vector |
Either a single value (if unique(x)
return a single value) or a NA
Michael R. McLaren (orcid: 0000-0003-1575-473X)
f <- factor(c("a", "a", "b", "c"), ordered = TRUE)
unique_or_na(f)
unique_or_na(f[1:2])
x <- c("a", "b", "a")
unique_or_na(x[c(1, 3)])
unique_or_na(x)
unique_or_na(x) %>% typeof()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.