Matplotlib - Performance and Large Data
What will be the output of this code snippet?
import matplotlib.pyplot as plt
for i in range(3):
plt.figure()
plt.plot([1,2,3], [4,5,6])
plt.gcf()