Re: [Pytables-users] Saving list of arrays as array

2010-10-06 Thread Joon Ro
Thanks for the reply.I don't have any problem since I can convert the list to arrays anytime. It is just strange that I used to get the list of arrays before. Thank you,JoonHi,Yes, ret

Re: [Pytables-users] Saving list of arrays as array

2010-10-05 Thread Francesc Alted
Hi, Yes, retrieving a list of lists is what is expected in this case. The flavor implementation in PyTables is not very sofisticated, so it detected a list and it returns a list (of lists in this case), no matter what it is made of. If this is not what you want, you will need to do an additional

[Pytables-users] Saving list of arrays as array

2010-10-05 Thread Joon Ro
Hi,I used to save a list of arrays (a list with its elements being numpy arrays) to hdf5 files and load them without any problems.Today I found that if I save the list of arrays, PyTables converts the array elements of the list into lists. So when I load the data I get list of lists.I actually d