This is how my pandas dataframe looks like:
Key x y
R1 594 383
R1 584 370
R1 579 365
R1 576 359
R1 569 349
... ... ...
R1095 596 68
R1095 587 66
R1095 577 71
R1095 593 66
R1095 592 67
Where Key column indicates to which identifier the particular x,y coordinates belong to. There are about 1095 keys in this particular example. I want to plot this in pydeck in a non-geospatial space.
I tried the same in Matplotlib but the rendering is taking too long.