On Apr 8, 2009, at 5:57 PM, Elaine Angelino wrote:

> hi there --
>
> for a numpy.recarray, is it possible to rename the fields in the  
> dtype?

Take a new view:
 >>> a = np.array([(1,1)],dtype=[('a',int),('b',int)])
 >>> b = a.view([("A",int), ('b', int)])

or:

use numpy.lib.recfunctions.rename_fields
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to