Matplotlib - Performance and Large Data
What will be the output of this code snippet?
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
plt.plot([1, 2, 3])
plt.savefig('plot.png')
print('Done')