9951 explained code solutions for 126 technologies


python-matplotlibHow to change title color


import matplotlib as mpl
import matplotlib.pyplot as plt

mpl.rc('text', color='red')

plt.plot([2,1,3])
plt.title('Example')

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

loads Matplotlib module to use plotting capabilities

mpl.rc

manage configuration

'text', color

set color of title

.show()

render chart in a separate window