filter_values
Filter rows where column matches specified values exactly.
An input dataset to filter.
A new dataset containing the same columns as the input dataset but only those rows passing the filter condition.
Name of column to be matched against the specified values
.
Only rows matching these values exactly will be included in the resulting dataset. May be a single value or a list of values to be matched.
- the
- [‘the’, ‘cat’]
- 2
- [2, 3]
if true
, only rows not matching the specified values
will be included in the resulting dataset.
Was this page helpful?