9951 explained code solutions for 126 technologies


python-matplotlibHow to change legend labels size


import matplotlib.pyplot as plt
plt.plot([1,2,10,6,15,3,4], label='A')
plt.plot([4,2,11,2,1,20,25], label='B')
plt.legend(prop={'size': 20})
plt.show()ctrl + c
import matplotlib.pyplot as plt

loads Matplotlib module to use plotting capabilities

.plot(

plot specified data

label

set label for this line

.legend(

show and configure legend

prop

set labels properties

size

specify font size to use for labels

.show()

render chart in a separate window