I am trying to plot data on python using matplotlib but for some reason it doesn't allow me to plot the date and time data on the X axis. It complains that it can't convert a string to a float. The excel data looks as follows:
06/11/17 04:13:02 PM 2.1
06/11/17 04:14:32 PM 3.9
06/11/17 04:14:54 PM 2
06/11/17 04:15:08 PM 3.2
06/11/17 04:15:25 PM 1.7
What I want is a graph that shows the date & time (not current time) on the X axis and the other values on the Y axis. I have the excel part working fine but the plotting graph is where I am having issues.