Hi,
I’m having trouble figuring out a query I’d like to perform on a dataset (in this case it’s the normalised UMAP data from the recent 2d corpus explorer video)
I’d like to filter the slices that are within a bounding box of the UMAP space so I can export them to a buffer. Here’s my attempt where the variables are x1 y1 x2 y2
clear, filter 0 > $1, and 0 < $3, and 1 > $2, and 1 < $4, addcolumn 0, addcolumn 1, transform normalised normalised-filtered
This does not produce any output. Can someone instruct me on how to properly query 2 columns of a dataset, each with 2 conditions?
Thanks!