Hi I have a numpy array
a = np.random.uniform(0,1, size = (10,3))
I want to plot each of the columns with its own label
plt.plot(a, label = ['label1', 'label2', 'label3'])
plt.legend()
How can I do that? The above is my tentative, but didn't work.