Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to add legend on side of the chart python

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(10)

fig = plt.figure()
ax = plt.subplot(111)

for i in xrange(5):
    ax.plot(x, i * x, label='$y = %ix$' % i)
 
ax.legend(bbox_to_anchor=(1.1, 1.05))  # ← add this line

plt.show()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #add #legend #side #chart #python
ADD COMMENT
Topic
Name
8+1 =