9951 explained code solutions for 126 technologies


python-matplotlibHow to change legend position


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(loc='lower right')
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 (we use default configuration in our case)

loc=

configure legend location

lower right

show legend in the lower right corner, see available values

.show()

render chart in a separate window