I\'m plotting about 10,000 items in an array. They are of around 1,000 unique values.
The plotting has been running half an hour now. I made sure rest of the code wo
Anyone running into the issue I had - (which is totally my bad :) )
If you're dealing with numbers, make sure when reading from CSV that your datatype is int/float, and not string.
values_arr = .... .flatten().astype('float')