Answers for "change font size globally in python"

0

change font size globally in python

params = {'axes.titlesize': 20, 'xtick.labelsize': 16, 'ytick.labelsize': 16, 'axes.labelsize': 16}
plt.rcParams.update(params)
Posted by: Guest on April-15-2022

Python Answers by Framework

Browse Popular Code Answers by Language