powered by
Find the proportion of values of x that are %in% the vector y.
x
%in%
y
prop_in(x, y, na.rm = TRUE, ignore.case = FALSE)
The proportion of x present in y.
A vector to check.
A vector to compare against.
logical; Should NA be ignored?
NA
logical; if FALSE, the pattern matching is case sensitive and if TRUE, case is ignored during matching.
FALSE
TRUE
mean(x %in% y)
Other counting wrappers: count_diff(), count_in(), count_na(), count_out(), na_in(), na_out(), na_rep(), prop_distinct(), prop_na(), prop_out(), what_in(), what_out()
count_diff()
count_in()
count_na()
count_out()
na_in()
na_out()
na_rep()
prop_distinct()
prop_na()
prop_out()
what_in()
what_out()
prop_in(c("VT", "NH", "ZZ", "ME"), state.abb)
Run the code above in your browser using DataLab