I have a dataframe with multiple attributes. I have a column amount and a column date which is of format (dd/mm/yyyy hh/mm/ss) or (dd/mm/yyyy). I would like to have the amount on axis y and the date on axis x.
My code here does not raise any errors but the plot is not what I am looking for as it seems that the date is not handled :
import pandas as pd
import matplotlib.pyplot as pplt
newAcc['EuroAmount']=newAcc['EuroAmount'].apply(pd.to_numeric)
newAcc['EuroAmount'].plot(x='AccountingDataCreation')
pplt.show()