Re: [Numpy-discussion] What is consensus anyway

2012-04-25 Thread Adam Hughes
I too have to agree with Andreas. I have been using Numpy for years in my work, but am not versed in C so I don't even understand what numpy is doing under the hood. I too would only be able to contribute to the code at the python level, or as Andreas said, at improving SciPy packages and other

Re: [Numpy-discussion] apply 'getitem to each element of obj array?

2012-04-05 Thread Adam Hughes
If you are storing objects, then can't you store them in a list and just do: for obj in objectlist: obj.attribute = value Or am I misunderstanding? On Thu, Apr 5, 2012 at 11:31 AM, Neal Becker ndbeck...@gmail.com wrote: I have an array of object. How can I apply attribute access to

Re: [Numpy-discussion] numpy videos

2012-03-12 Thread Adam Hughes
Abhi, One thing I would suggest is to tackle numpy with a particular focus. Once you've gotten the basics down through tutorials and videos, do you have a research project in mind to use with numpy? On Mon, Mar 12, 2012 at 6:08 PM, Skipper Seabold jsseab...@gmail.comwrote: On Mon, Mar 12,

Re: [Numpy-discussion] numpy videos

2012-03-12 Thread Adam Hughes
right ?? -Abhi On Mon, Mar 12, 2012 at 3:18 PM, Adam Hughes hugad...@gwmail.gwu.edu wrote: Abhi, One thing I would suggest is to tackle numpy with a particular focus. Once you've gotten the basics down through tutorials and videos, do you have a research project in mind to use

Re: [Numpy-discussion] Forbidden charcter in the names argument of genfromtxt?

2012-02-20 Thread Adam Hughes
all part of a learning curve. I'll keep in mind that the period may cause problems later; however, as far as I can tell so far, there's nothing going wrong when I access the data. On Mon, Feb 20, 2012 at 1:35 PM, Brett Olsen brett.ol...@gmail.com wrote: On Sat, Feb 18, 2012 at 8:12 PM, Adam

Re: [Numpy-discussion] Forbidden charcter in the names argument of genfromtxt?

2012-02-20 Thread Adam Hughes
Thanks for clearing that up. On Mon, Feb 20, 2012 at 1:58 PM, Skipper Seabold jsseab...@gmail.comwrote: On Mon, Feb 20, 2012 at 1:35 PM, Brett Olsen brett.ol...@gmail.com wrote: On Sat, Feb 18, 2012 at 8:12 PM, Adam Hughes hugad...@gwmail.gwu.edu wrote: Hey everyone, I have timeseries

[Numpy-discussion] Forbidden charcter in the names argument of genfromtxt?

2012-02-18 Thread Adam Hughes
Hey everyone, I have timeseries data in which the column label is simply a filename from which the original data was taken. Here's some sample data: name1.txt name2.txt name3.txt 32 34953 32 03402 I've noticed that the standard genfromtxt()