For some reason I can't get my data plotted on the 'x'axis, and I can't get column name printed on the 'y' axis. I've tried a number of variations to the 'df.plot()' line over the past week without success.
Here is my code:
data = [['2018/10/11',1000],['2018/10/12',2000],['2018/10/13',1500]]
df = pd.DataFrame(data,columns=['Date','Amount'])
df.plot(x='Date', y='Amount')
plt.show()

plt.ylabel('Amount')for the axis label?