Matplotlib - Performance and Large Data
Consider this code:
What is the expected result in the PDF file?
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.scatter(range(5000), range(5000), rasterized=True)
plt.savefig('scatter.pdf')What is the expected result in the PDF file?
