|
Soru 1

Bu grafiğin oluşturduğu kodlama aşağıdakilerden hangisidir?
A)
x = np.array([0, 1, 2, 3])
y = np.array([50, 20, 40, 30])
plt.plot(x,y)
plt.title("Sonuçlar")
plt.show() | B)
x = np.array([0, 1, 2, 3])
y = np.array([50, 20, 40, 30])
plt.plot(x,y, "Sonuçlar")
plt.show() | C)
x = np.array([0, 1, 2, 3])
y = np.array([50, 20, 40, 30])
plt.plot("Sonuçlar", x,y)
plt.show() | D)
x = np.array([0, 1, 2, 3])
y = np.array([50, 20, 40, 30])
plt.bar("Sonuçlar", x,y)
plt.show() | E)
x = np.array([0, 1, 2, 3])
y = np.array([50, 20, 40, 30])
plt.plot(y,x)
plt.title("Sonuçlar")
plt.show() |
|