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
Importing seaborn somewhere in the code may cause pyplot.hist to take a really long time.
If the problem is seaborn, it can be solved by resetting the matplotlib settings:
import seaborn as sns sns.reset_orig()