Is anyone aware of a good tutorial, list of examples, or guide on using pandas with PyTables?
closed as not constructive by Andy Hayden, ekhumoro, Kirk Broadhurst, Lafada, Chris Gerken Dec 4 '12 at 4:36
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I'm the primary pandas developer (and not a frequent StackOverflow user, hence why I missed this for a while). There are unfortunately few docs about the HDFStore object and I'd love to dedicate some more time to building it out (or to get some help). The source code is the best source of information-- there is not much magic to using PyTables. Some people have submitted patches to me for HDFStore class that I have not got around to applying them yet. |
|||||||
|
|
I found Wes tutorial at this years pycon invaluable http://www.youtube.com/watch?v=w26x-z-BdWQ |
|||
|
|
|
So I have not found a tutorial but in the io module (pandas.io) there is a pytables.py file (https://github.com/wesm/pandas/blob/master/pandas/io/pytables.py) which contains a HDFStore method. The comments in the code layout a simple (four line) example:
The 'bar' variable is a pandas DataMatrix object. Basically, create a file 'test.h5' through pytables and then create an empty group, 'foo'. When you set 'bar' to 'foo', the root node of test.h5 has a group 'foo' populated with three tables. One with the column names, one with the indices, and one with the values. I am continuing to experiment and will post more as I get it. |
|||
|
|