I am trying to create a matplotlib plot with dates on the X axis. I have managed to plot a single time series using py_date.
However, I want to plot more than a single time series for the same set of dates. My data looks something like this:
Date (X) Y1 Y2
20010101 101 99.2
20010102 123 45.2
20010103 104 99.0
20010104 100 99.5
20010105 167 87.6
How may I create a plot with multiple Y values (2 in this case), spanning over the same date range?
Just plot them separately: