[Numpy-discussion] labeled array

2008-05-06 Thread Keith Goodman
I'm trying to design a labeled array class. A labeled array contains a 2d array and two lists. One list labels the rows of the array (e.g. variable names) and another list labels the columns of the array (e.g. dates). You can sum (or multiply, divide, subtract, etc.) two labeled arrays that have

Re: [Numpy-discussion] labeled array

2008-05-06 Thread Christoph T. Weidemann
On Tue, May 6, 2008 at 1:00 PM, Keith Goodman [EMAIL PROTECTED] wrote: I'm trying to design a labeled array class. A labeled array contains a 2d array and two lists. One list labels the rows of the array (e.g. variable names) and another list labels the columns of the array (e.g. dates).