filter_row_numbers(ds_in: dataset, {
    "param": value,
    ...
}) -> (ds_out: dataset)

Keeps or drops rows with specific row numbers, i.e. based on their 0-based, consecutive integer index.

filter_row_numbers(ds_in: dataset, {
    "param": value,
    ...
}) -> (ds_out: dataset)
row_numbers
array[integer]
required

Ids of the rows to filter. Excepts either a single row (as a number) or a list of row numbers.

exclude
boolean

if true, selected rows will be excluded from the resulting dataset.