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.

How can I determine the size (in bytes) of a PyTables Array?

share|improve this question

3 Answers

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

share|improve this answer
up vote 0 down vote accepted

It turns out that since all PyTables arrays are simply Numpy arrays underneath, you can do the following:

MyPytableFile.root.myPytableArray[:].nbytes

share|improve this answer

Why not

arrSizeInBytes = arr.nrows * arr.rowsize

At least it equals to the results of

./h5ls -r -v pytables.db | grep "Dataset\|Storage"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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