How can I determine the size (in bytes) of a PyTables Array?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Its not straight forward to do, but one thing you can do is to pickle the object and then determine the size of the serialized object. See this post |
|||
|
|
|
It turns out that since all PyTables arrays are simply Numpy arrays underneath, you can do the following: MyPytableFile.root.myPytableArray[:].nbytes |
|||
|
|
|
Why not
At least it equals to the results of
|
||||
|
|