na_out {campfin} | R Documentation |
Remove out
Description
Set NA
for the values of x
that are %out%
of the vector y
.
Usage
na_out(x, y, ignore.case = FALSE)
Arguments
x |
A vector to check. |
y |
A vector to compare against. |
ignore.case |
logical; if |
Value
The vector x
missing any values not in y
.
See Also
Other counting wrappers:
count_diff()
,
count_in()
,
count_na()
,
count_out()
,
na_in()
,
na_rep()
,
prop_distinct()
,
prop_in()
,
prop_na()
,
prop_out()
,
what_in()
,
what_out()
Examples
na_out(c("VT", "NH", "ZZ", "ME"), state.abb)
na_out(1:10, seq(1, 10, 2))
[Package campfin version 1.0.11 Index]