“Legende AX Matplotlib” Code-Antworten

Matplotlib -Legende

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()
Plain Pigeon

matplotlib add legend achse 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()
Silly Swan

Legende AX Matplotlib

ax.plot([1, 2, 3], label='Inline label')
ax.legend()
Ananda Gorck Streit

Ähnliche Antworten wie “Legende AX Matplotlib”

Fragen ähnlich wie “Legende AX Matplotlib”

Weitere verwandte Antworten zu “Legende AX Matplotlib” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen