9951 explained code solutions for 126 technologies


python-matplotlibHow to set font style to bold


import matplotlib as mpl
import matplotlib.pyplot as plt

mpl.rc('font', weight='bold')
plt.plot([2,1,3])

plt.show()ctrl + c
import matplotlib.pyplot as plt

loads Matplotlib module to use plotting capabilities

mpl.rc

manage configuration

font

change font settings

weight

set weight of the font

.plot(

plot specified data

.show()

render chart in a separate window