“Legenda Kustom Matplotlib” Kode Jawaban

cara menambahkan legenda ke plot python

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()
Good Gerenuk

Legenda Matplotlib

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

Legenda Kustom Matplotlib

import matplotlib.lines as mlines

eight = mlines.Line2D([], [], color='blue', marker='s', ls='', label='8')
nine = mlines.Line2D([], [], color='blue', marker='D', ls='', label='9')
# etc etc
plt.legend(handles=[eight, nine])
Xerothermic Xenomorph

Jawaban yang mirip dengan “Legenda Kustom Matplotlib”

Pertanyaan yang mirip dengan “Legenda Kustom Matplotlib”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya