I was wondering if it is possible to display both the top and bottom 10 objects (quantitative) next to each other in vega lite.
I know how to get them individually but not both:
"transform": [
{
"window": [{"op": "rank", "as": "rank"}],
"sort": [{"field": "Days_to_maturity", "order": "descending"}]
},
{"filter": "datum.rank <= 10"}
],