Matplotlib - Export and Publication Quality
Identify the error in this code that tries to set figure size:
import matplotlib.pyplot as plt plt.figure(figsize=8, 4) plt.plot([1, 2], [3, 4]) plt.show()
