In [1]:
%pylab inline


Populating the interactive namespace from numpy and matplotlib

In [2]:
data = load('../logs/with-reboot.npy')

In [3]:
plot([len(d) for d in data])


Out[3]:
[<matplotlib.lines.Line2D at 0x3511850>]

In [4]:
j = 2

for d in data:
    plot(d[:, 2])



In [ ]: