My plot 2 with matplolib
[2]:
x = np.array([1, 3, 4])
y = np.array([1, 5, 3])
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)
ax.scatter(x, y)
plt.show()
[ ]:
[2]:
x = np.array([1, 3, 4])
y = np.array([1, 5, 3])
fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)
ax.scatter(x, y)
plt.show()
[ ]: