View source: R/is_duplicated.R
is_multiple | R Documentation |
is_multiple()
and is_duplicated()
return TRUE
if they detect,
respectively, multiple different values of a variable (e.g. c(1, 2)), or duplicated values of a variable (e.g. c(1, 1)
).
is_multiple(.data)
is_duplicated(.data)
.data |
A vector. |
Logical.
Other functions for internal use in other fgeo packages:
flag_if()
,
guess_plotdim()
Other functions to check inputs:
check_crucial_names()
,
flag_if_group()
Other functions for developers:
check_crucial_names()
,
extract_insensitive()
,
flag_if_group()
,
nms_try_rename()
,
rename_matches()
,
type_ensure()
is_multiple(c(1, 2))
is_multiple(c(1, 1))
is_multiple(c(1, NA))
is_duplicated(c(1, 2))
is_duplicated(c(1, 1))
is_duplicated(c(1, NA))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.