我有一个结构化数组,例如:
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
构造函数对象?
答案 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)