“So streuen Sie das Diagramm in Matplotlib von zwei Sätzen” Code-Antworten

Mehrere Streudiagramme in Python

import matplotlib.pyplot as plt

x = range(100)
y = range(100,200)
fig = plt.figure()
ax1 = fig.add_subplot(111)

ax1.scatter(x[:4], y[:4], s=10, c='b', marker="s", label='first')
ax1.scatter(x[40:],y[40:], s=10, c='r', marker="o", label='second')
plt.legend(loc='upper left');
plt.show()
Good Goosander

So streuen Sie das Diagramm in Matplotlib von zwei Sätzen

import matplotlib.pyplot as plt
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.scatter(x1, y1, s = 10, c = 'b', label = 'elbow')
ax1.scatter(x2, y2, s = 10, c = 'r', label = 'shoulder')
plt.legend(loc='upper left');
plt.show()
Cautious Cod

Ähnliche Antworten wie “So streuen Sie das Diagramm in Matplotlib von zwei Sätzen”

Fragen ähnlich wie “So streuen Sie das Diagramm in Matplotlib von zwei Sätzen”

Weitere verwandte Antworten zu “So streuen Sie das Diagramm in Matplotlib von zwei Sätzen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen