Answers for "use font on plot matplotlib 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

Code answers related to "use font on plot matplotlib python"

Python Answers by Framework

Browse Popular Code Answers by Language