In my attempt to capture some time series data and share to report another problem I'm seeing, I discovered that I can't even pickle the data I want to disk. I'm out of ideas to try and so I thought I'd share what I'm seeing. Any suggestions most appreciated!
I confirmed that I could successfully pickle a random time series that I created to disk and load it back into memory. Not sure what is so special about this particular one.
array([ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 3., 3., 3., 3., 3., 3., 3., 3.,
3., 3., 3., 3., 3., 3., 3., 3., 3., 3., 4.,
4., 4., 4., 4., 4., 4., 4., 4., 4., 4., 4.,
4., 4., 4., 4., 5., 5., 5., 5., 5., 5., 5.,
5., 5., 5., 5., 5., 5., 6., 6., 6., 6., 6.,
6., 6., 6., 6., 6., 6., 6., 6., 6., 7., 7.,
7., 7., 7., 7., 7., 7., 7., 8., 8., 8., 8.,
8., 8., 8., 8., 8., 8., 8., 9., 9., 9., 9.,
9., 9., 9., 9., 10., 10., 10., 10., 10., 10., 10.,
10., 11., 11., 11., 11., 11., 11., 11., 12., 12., 12.,
12., 12., 12., 12., 12., 13., 13., 13., 13., 13., 13.,
13., 14., 14., 14., 14., 14., 14., 14., 15., 15., 15.,
15., 15., 15., 15., 16., 16., 16., 16., 16., 16., 16.,
17., 17., 17., 17., 17., 17., 17., 18., 18., 18., 18.,
18., 18., 19., 19., 19., 19., 19., 19., 20., 20., 20.,
20., 20., 21., 21., 21., 21., 22., 22., 22., 22., 22.,
22., 23., 23., 23., 23., 23., 24., 24., 24., 25., 25.,
25.])
In:
ts.index
Out:
<class 'pandas.tseries.index.DatetimeIndex'>
[2011-08-08 00:00:00, ..., 2012-09-29 00:00:00]
Length: 419, Freq: None, Timezone: None
In:
ts.save('tstest')
ts2 = pandas.TimeSeries()
ts2.load('tstest')
ts2
Out:
Series([], dtype=float64)