Matplotlib - Performance and Large Data
What will be the output of this code snippet when plotting 1 million points with
matplotlib?
import matplotlib.pyplot as plt import numpy as np x = np.arange(1000000) y = np.sin(x / 100000) plt.plot(x, y) plt.show()
