X = np.array([[-1, 1], [-2,-1], [-3, -2], [1, 1], [2, 1], [3, 2]])
plt.plot(X)
plt.show()
If I plot this the first element in each list is Y and the second is X. So for [-1, 1], -1 is Y and 1 is X. Why is this the default and what's the best way to change it?