filter_rows
Filter rows in a dataset by applying a numeric condition to a column using operators like >, <, >=, <=, ==, or !=. Returns only rows meeting the threshold.
Instructions
Filter rows where column operator value, e.g. spend > 5000.
Args: name: the dataset name. column: the numeric column to filter on. operator: one of '>', '<', '>=', '<=', '==', '!='. value: the threshold.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| value | Yes | ||
| column | Yes | ||
| operator | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |