I have 2 Pandas series, each with indexes of DateTimeIndex and values for where the other doesn't e.g.
a =
values
2018-01-20 01:58:15 1000
2018-01-20 01:58:20 1005
2018-01-20 01:58:25 1010
2018-01-20 01:58:45 1030
2018-01-20 01:58:50 1040
b =
values
2018-01-20 01:58:30 1015
2018-01-20 01:58:35 1020
2018-01-20 01:58:40 1025
and I want to plot both on the same graph, with different colour markers for each series, using matplotlib.
e.g.
plt.plot(xs, a.values)
plt.plot(xs, b.values)
(where xs is the combined index)
What's the best/most elegant way to do this?
