Having the following DF, plotting A series produce the expected chart:
A
df = pd.DataFrame({\'A\':[9,4,2,5,4,6,1,1,9,8,7,4,3,1,6,4]}) df.A.plot() <