Re: [Pytables-users] natural naming

2008-07-23 Thread Andrew Straw
Francesc Alted wrote: > Hi Gabriel, > > Your message has not entered the list properly and bounced (mail sent > from unsubscribed address?). I'm replying to it here. > > Gabriel J.L. Beckers wrote: >> Hi list, > >> In my code I would like to enforce the use of names that adhere to >> the natur

[Pytables-users] turning 1-d numpy array to 2-d

2008-07-23 Thread Kevin Christman
I have a Pytables table called Data. I do kExp = Data.readWhere('(MotorCompany == "Reliance")') to pick out some of the data. Now the type(kExp) is numpy.ndarray, and kExp.shape is (500,). but the type(kExp[0]) is numpy.void, and kExp[0] looks like a list. I would like kExp to be a 2-dimensio

Re: [Pytables-users] natural naming

2008-07-23 Thread Francesc Alted
Hi Gabriel, Your message has not entered the list properly and bounced (mail sent from unsubscribed address?). I'm replying to it here. Gabriel J.L. Beckers wrote: > Hi list, > In my code I would like to enforce the use of names that adhere to > the natural naming principle of PyTables. But ho