Matplotlib - Performance and Large Data
What will be the effect of the following code snippet?
import matplotlib.pyplot as plt
x = range(10000)
y = [i**0.5 for i in x]
plt.plot(x, y, rasterized=True)
plt.savefig('plot.pdf')