Matplotlib - Export and Publication Quality
Identify the error in this code that tries to set font sizes for ticks:
import matplotlib.pyplot as plt plt.plot([1, 2, 3], [4, 5, 6]) plt.tick_params(axis='x', labelsize=14) plt.yticks(fontsize='large') plt.show()
