Re: [Numpy-discussion] genfromtxt to structured array

2009-09-25 Thread Ryan May
On Fri, Sep 25, 2009 at 4:30 PM, Timmie wrote: > Hello, > this may be a easier question. > > I want to load data into an structured array with getting the names from the > column header (names=True). > > The data looks like: > >    ;month;day;hour;value >    1995;1;1;01;0 > > > but loading only wo

[Numpy-discussion] genfromtxt to structured array

2009-09-25 Thread Timmie
Hello, this may be a easier question. I want to load data into an structured array with getting the names from the column header (names=True). The data looks like: ;month;day;hour;value 1995;1;1;01;0 but loading only works only if changed to: year;month;day;hour;value