Filter Transform
Edit this pageThe filter transform removes objects from a data stream based on a provided filter expression or filter object.
// Any View Specification
{
  ...
  "transform": [
    {"filter": ...} // Filter Transform
     ...
  ],
  ...
}
Vega-Lite filter transforms must have the filter property describing the predicate for the filtering condition.
| Property | Type | Description | 
|---|---|---|
| filter | Predicate | Required. The  1) an expression string, where  2) one of the field predicates:   3) a selection predicate, which define the names of a selection that the data point should belong to (or a logical composition of selections). 4) a logical composition of (1), (2), or (3). |