Angenommen, Sie haben eine zweidimensionale Darstellung von x1 und y1, wie unten gezeigt.
import numpy as np
import matplotlib.pyplot as plt
x1 = np.array([1,2,3])
y1 = np.array([1,2,3])
plot = plt.scatter(x1,y1,s=50,c="b")
Überlegen Sie, wie Sie einem solchen einzelnen Datenelement neue Daten hinzufügen können. Hier werden (1) gerade Linie (y = x) und (2) Diagramm (x2, y2) hinzugefügt.
x1 = np.array([1,2,3])
y1 = np.array([1,2,3])
#Gerade y=Definition von x
x = np.arange(0,10)
y = x
#Plot x2,Definition von y2
x2 = np.array([5,6,7])
y2 = np.array([5,6,7])
fig = plt.figure()
ax = fig.add_subplot(1,1,1)
plt.xlabel("x",fontsize=18)
plt.ylabel("y",fontsize=18)
ax.scatter(x1,y1,s=50,c="b")
ax.plot(x,y,c="k")
ax.scatter(x2,y2,s=50,c="r")
Recommended Posts