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).
I'm working on a dimensioned data class that seems to be a more general case of what you are looking for. It's a subclass of ndarray, and contains an attribute which specifies each dimension (this works for any number of dimensions, not just 2D). This data structure is not currently in a state where it's useful yet, but this will hopefully change soon. _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
