Skip to content Skip to sidebar Skip to footer

Overflow Error Plot

I want do stuff with sound/ audio and music processing. Before this i created a sample signal with a 10 second sweep. I have a simple script which have to plot some signals. Firs

Solution 1:

Thanks to the commend of @ali_m and his link i found a solution.

according to the answer there i need to add agg.path.chunksize of 10 000 to 100 000. because i don't want to do that in the matplotlibrc file i had to do that in the script.

According to a discusion on there own github i found the right method doing that. I have to add plt.rcParams['agg.path.chunksize'] = 10000 to the script and now it works fine.

Solution 2:

This worked for me too, on a Windows 7 Professional workstation, Python 3.8.4.

plt rcParams['agg.path.chunksize'] = 10000

My dataset has 67m observations.

Post a Comment for "Overflow Error Plot"