Matplotlib - Export and Publication Quality
What will be the size of the figure in inches after running this code?
import matplotlib.pyplot as plt plt.figure(figsize=(6, 3)) plt.plot([1, 2, 3], [4, 5, 6]) plt.show()
