NumPy:以编程方式修改结构化数组的dtype

时间:2011-05-06 03:20:41

标签: python types numpy

我有一个结构化数组,例如:

import numpy as np
orig_type = np.dtype([('Col1', '<u4'), ('Col2', '<i4'), ('Col3', '<f8')])
sa = np.empty(4, dtype=orig_type)

sa看起来像(随机数据):

array([(11772880L, 14527168, 1.079593371731406e-307),
       (14528064L, 21648608, 1.9202565460908188e-302),
       (21651072L, 21647712, 1.113579933986867e-305),
       (10374784L, 1918987381, 3.4871913811200906e-304)], 
      dtype=[('Col1', '<u4'), ('Col2', '<i4'), ('Col3', '<f8')])

现在,在我的程序中,我以某种方式决定我需要将'Col2'的数据类型更改为字符串。如何修改dtype来执行此操作,例如非编程方式:

new_type = np.dtype([('Col1', '<u4'), ('Col2', '|S10'), ('Col3', '<f8')])
new_sa = sa.astype(new_type)

现在看来new_sa,这很棒:

array([(11772880L, '14527168', 1.079593371731406e-307),
       (14528064L, '21648608', 1.9202565460908188e-302),
       (21651072L, '21647712', 1.113579933986867e-305),
       (10374784L, '1918987381', 3.4871913811200906e-304)], 
      dtype=[('Col1', '<u4'), ('Col2', '|S10'), ('Col3', '<f8')])

如何以编程方式将orig_type修改为new_type? (不要担心长度|S10)。有一种“简单”的方式,还是我需要一个for循环来构造一个新的dtype构造函数对象?

2 个答案:

答案 0 :(得分:5)

没有捷径。您只需构建新的dtype,然后使用.astype()

答案 1 :(得分:4)

如果您的问题实际上是针对如何构建旧的dtype对象,那么这可能就是您要找的对象:

orig_type = sa.dtype
descr = orig_type.descr
descr[1] = (descr[1][0], "|S10")
new_type = numpy.dtype(descr)