replyr_filter: Filter a tbl on a column having values in a given set.
Description
Note: if temp tables can't be used a regular table is created and destroyed (which may not be safe if there is another replyr_filter running at the same time).
Usage
replyr_filter(x, cname, values, verbose = TRUE)
Arguments
x
tbl or item that can be coerced into such.
cname
name of the column to test values of.
values
set of values to check set membership of.
verbose
logical if TRUE echo warnings
Value
new tbl with only rows where cname value is in values set.