Matplotlib - Export and Publication Quality
What will be the font size of the x-axis label in this code?
import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [4, 5, 6])
plt.xlabel('X Axis', fontsize=16)
plt.show()