Quiver - How can I filter an object set with a "range"?

I’m having a Quiver in which I’m using Vega Plot. The selection on the Vega plot is producing a Transform Table with 2 ranges columns “Number Ranges”.

I want to filter my original Object set with those ranges.

e.g. propertyyA = 10, 20, 30 on 3 different objects
I display them in a Vega plot
The user can select via a rectangle [10, 25]
I want to filter my base object set so that I get only the object for which propertA is in range [10,25]

Is it possible to achieve this ?

You can popout cells of the “range” so that they become numeric parameter that then you can use as filters.

See https://www.palantir.com/docs/foundry/quiver/cards-vega-plot/#construct-a-drill-down-workflow

Yes the response above is correct, you can

  1. Hover over the Transform Table cell to “pop out” the numeric range value
  2. Convert the numeric range into a “range start” and “range end” value via the next actions menu
  3. Filter the original object set using the start and end values as parameters, with the “between” filter option

There’s also a fix in progress which will allow you use a “within” filter option, and directly insert the numeric range there (without having to split it into start and end dates)

1 Like

Quiver now includes a “within range” filter type, so you can instead follow these two steps:

  1. Hover over the Transform Table cell to “pop out” the numeric range value
  2. Use an “Object set filter” card to filter the original object set. Use a “within range” filter option, inputting the range from step 1 as the parameter

1 Like