Multiple time-series(MS excel line graph) style plots
Hello you wise sages,
I have several lists of 1 dimensional data which I would like to plot on one set of axes, in a time series format.
More info:
I can plot one set this way:
1dlist = [34,52,65]
t = finance.TimeSeries(1dlist)
t.plot()
So if I had 2 lists, 1dlistA and 1dlistB, how would I overlay plots of them both?