The following code should do what I want but it takes 10gb of ram by the time it is 20% done with the loop.

# In [4]: type(pd)
# Out[4]: pandas.sparse.frame.SparseDataFrame
memid = unique(pd.Member)
pan = {}
for mem in memid:
    pan[mem] = pd[pd.Member==mem]
goal = pandas.Panel(pan)
link|improve this question
What are the dimensions (pd.shape) and density (pd.density) of the SparseDataFrame? Any change you can e-mail me a pickle of the object (pd.save(file_path)) for me to have a look to try to diagnose what's up? BTW these questions would be better posed on the mailing list than SO. – Wes McKinney Jan 21 at 22:27
pd.shape = (2668990, 232) – user1162837 Jan 21 at 22:33
pd.density = 0.12814551216649045 The file is too large to send through email. – user1162837 Jan 21 at 22:34
Also, pandas is a great library. :) – user1162837 Jan 21 at 22:42
feedback

1 Answer

up vote 1 down vote accepted

I created a GitHub issue here.

https://github.com/wesm/pandas/issues/663

I'm pretty sure I identified a circular reference between NumPy ndarray views causing a memory leak. Just committed a fix:

https://github.com/wesm/pandas/commit/4c3916310a86c3e4dab6d30858a984a6f4a64103

Can you install from source and let me know if that fixes your problem?

BTW you might try using SparsePanel instead of Panel because Panel will convert all of the sub-DataFrames to dense form.

Lastly, you might consider using groupby as an alternative to the O(N * M) chopping-up of the SparseDataFrame. It's even shorter:

pan = dict(pd.groupby('Member'))

link|improve this answer
The version I'm running is a git clone from last night. Thanks on the SparsePanel. When I run pan = dict(pd.groupby('Member')) I get: RuntimeError: maximum recursion depth exceeded while calling a Python object. The actual object takes up less than 1gb when loaded, but the loop causes the ram to slowly get eaten away. I'll direct my questions to the mail list from now on. – user1162837 Jan 21 at 23:10
The must be a groupby issue with SparseDataFrame. I'll have to have a look. If you could somehow get me a gzipped pickle of the SparseDataFrame by some means (it should be less than 100 megabytes) I can have a closer look – Wes McKinney Jan 22 at 17:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.