Answers for "matplotlib add legend"

7

how to add legend to python plot

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 20, 1000)
y1 = np.sin(x)
y2 = np.cos(x)

plt.plot(x, y1, "-b", label="sine")
plt.plot(x, y2, "-r", label="cosine")
plt.legend(loc="upper left")
plt.ylim(-1.5, 2.0)
plt.show()
Posted by: Guest on February-04-2021
7

matplotlib legend

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 20, 1000)
y1 = np.sin(x)
y2 = np.cos(x)

plt.plot(x, y1, "-b", label="sine")
plt.plot(x, y2, "-r", label="cosine")
plt.legend(loc="upper left")
plt.ylim(-1.5, 2.0)
plt.show()
Posted by: Guest on June-01-2020
1

matplotlib add legend axis x

fig = plt.figure(figsize=(10,5))
ax = fig.add_subplot(111)
ax.set_title('ADR vs Rating (CS:GO)')
ax.scatter(x=data[:,0],y=data[:,1],label='Data')
plt.plot(data[:,0], m*data[:,0] + b,color='red',label='Our Fitting 
Line')
ax.set_xlabel('ADR')
ax.set_ylabel('Rating')
ax.legend(loc='best')
plt.show()
Posted by: Guest on June-04-2020
3

plt.legend(

plt.legend(['first', 'second']);
Posted by: Guest on January-13-2021
0

matplotlib pyplot legend location

figlegend( (line1, line2, line3),
           ('label1', 'label2', 'label3'),
           'upper right' )
Posted by: Guest on May-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language