[Matplotlib-users] Simplifying plots (reducing data points)?

Neal Becker ndbecker2 at gmail.com
Fri Oct 2 09:21:37 EDT 2020


I produced a line plot as:
ax.plot (x, y, '.')
and saved as pdf.

Both x and y were large vectors, resulting in a large pdf, and when
incorporated into a LaTeX document, the resulting pdf takes a long time to
open.

Other than my manually decimating the vectors:
ax.plot (x[::100], y[::100], '.')

Is there some way within mpl to simplify plots?  Or perhaps post-processing
the pdf?

Thanks,
Neal

-- 
*Those who don't understand recursion are doomed to repeat it*
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/matplotlib-users/attachments/20201002/57928b29/attachment.html>


More information about the Matplotlib-users mailing list