I'm testing with Pandas and matplotlib. The first column of the Excel are dates, format (dd / mm / yy). Reading the Excel sheet with Pandas presents me:
0 Fecha Valor
1 2017-09-11 00:00:00 44.42
2 2017-09-08 00:00:00 44.17
3 2017-09-07 00:00:00 43.86
4 2017-09-06 00:00:00 43.91
When trying to graph with matplotlib it gives me the error KeyError: "Date" How can I get the date imported by Pandas to have the date format and thus be able to graph dates - values?