Answers for "change font of figures python"

1

matplotlib change font

from matplotlib import rc
font = {'size'   : 16}
matplotlib.rc('font', **font)

# change font
matplotlib.rcParams['font.sans-serif'] = "Arial"
matplotlib.rcParams['font.family'] = "sans-serif"
Posted by: Guest on July-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language