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'))
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