filter_values(ds_in: dataset, {
    "param": value,
    ...
}) -> (ds_out: dataset)
filter_values(ds_in: dataset, {
    "param": value,
    ...
}) -> (ds_out: dataset)
column
string
required

Name of column to be matched against the specified values.

values
[number, string, array[['number', 'string']]]
required

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.

exclude
boolean

if true, only rows not matching the specified values will be included in the resulting dataset.