powered by
Return the values of x that are %in% of the vector y.
x
%in%
y
what_in(x, y, ignore.case = FALSE)
The elements of x that are %in% y.
A vector to check.
A vector to compare against.
logical; if FALSE, the pattern matching is case sensitive and if TRUE, case is ignored during matching.
FALSE
TRUE
x[which(x %in% y)]
Other counting wrappers: count_diff(), count_in(), count_na(), count_out(), na_in(), na_out(), na_rep(), prop_distinct(), prop_in(), prop_na(), prop_out(), what_out()
count_diff()
count_in()
count_na()
count_out()
na_in()
na_out()
na_rep()
prop_distinct()
prop_in()
prop_na()
prop_out()
what_out()
what_in(c("VT", "DC", NA), state.abb)
Run the code above in your browser using DataLab