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
I was facing the same problem using Pandas .hist() method. For me the solution was:
.hist()
pd.to_numeric(df['your_data']).hist()
Which worked instantly.