Re: [Pytables-users] Numpy data into Pytable array (cannot be converted into an array object compliant with LastRowArray)

2012-03-17 Thread sreeaurovindh viswanathan
On Sat, Mar 17, 2012 at 7:34 PM, sreeaurovindh viswanathan sreeaurovi...@gmail.com wrote: Hi, I have a numpy array which i am trying to save to an array in the table.I am not sure why i am getting the following error. Table name is adSuggester queryToks=Int32Col(shape=129,pos=8) and

Re: [Pytables-users] Numpy data into Pytable array (cannot be converted into an array object compliant with LastRowArray)

2012-03-17 Thread Anthony Scopatz
Try changing adSuggester['queryToks']=qA to adSuggester['queryToks'][:]=qA Be Well Anthony On Sat, Mar 17, 2012 at 9:13 AM, sreeaurovindh viswanathan sreeaurovi...@gmail.com wrote: On Sat, Mar 17, 2012 at 7:34 PM, sreeaurovindh viswanathan sreeaurovi...@gmail.com wrote: Hi, I have