dalejung / pandas-composition

Pandas Composition/Inheritance
MIT License
9 stars 0 forks source link

Separate the pickling into metadata and pandas data #4

Closed dalejung closed 11 years ago

dalejung commented 11 years ago

Right now a straight pickle works fine. however, I want to separate out the pandas data and the metadata separately. So that it would be possilbe to reconstruct a UserFrame from the separate pieces.

This would make it easier to support full serialization for things like HDF5

dalejung commented 11 years ago

Done, pickling has metadata separate from the pandas object. In UserFrame it is explicit, while UserSeries just has an additional meta object.