Ask Your Question

I. Noobton's profile - activity

2015-07-22 06:18:14 +0200 received badge  Famous Question (source)
2013-05-01 14:25:19 +0200 received badge  Notable Question (source)
2012-09-10 09:29:53 +0200 received badge  Popular Question (source)
2012-02-28 09:13:11 +0200 received badge  Student (source)
2012-02-28 09:13:07 +0200 received badge  Self-Learner (source)
2012-02-28 09:13:07 +0200 received badge  Teacher (source)
2012-02-27 15:56:10 +0200 answered a question Multiple time-series(MS excel line graph) style plots

nevermind, I figured it out. It's done like this:

a = finance.TimeSeries(1dlistA)
b = finance.TimeSeries(1dlistB)
both = a.plot() + b.plot()
both.plot()
2012-02-27 15:54:18 +0200 received badge  Editor (source)
2012-02-27 15:48:20 +0200 asked a question 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?