9

我在 Python 2.7 中运行 Numpy 1.6,并且有一些我从另一个模块获得的一维数组。我想把这些数组打包成一个结构化数组,这样我就可以按名称索引原始的一维数组。我无法弄清楚如何将 1D 数组转换为 2D 数组并使 dtype 访问正确的数据。我的 MWE 如下:

>>> import numpy as np
>>> 
>>> x = np.random.randint(10,size=3)
>>> y = np.random.randint(10,size=3)
>>> z = np.random.randint(10,size=3)
>>> x
array([9, 4, 7])
>>> y
array([5, 8, 0])
>>> z
array([2, 3, 6])
>>> 
>>> w = np.array([x,y,z])
>>> w.dtype=[('x','i4'),('y','i4'),('z','i4')]
>>> w
array([[(9, 4, 7)],
       [(5, 8, 0)],
       [(2, 3, 6)]], 
      dtype=[('x', '<i4'), ('y', '<i4'), ('z', '<i4')])
>>> w['x']
array([[9],
       [5],
       [2]])
>>> 
>>> u = np.vstack((x,y,z))
>>> u.dtype=[('x','i4'),('y','i4'),('z','i4')]
>>> u
array([[(9, 4, 7)],
       [(5, 8, 0)],
       [(2, 3, 6)]],    
      dtype=[('x', '<i4'), ('y', '<i4'), ('z', '<i4')]) 

>>> u['x']
array([[9],
       [5],
       [2]])

>>> v = np.column_stack((x,y,z))
>>> v
array([[(9, 4, 7), (5, 8, 0), (2, 3, 6)]], 
      dtype=[('x', '<i4'), ('y', '<i4'), ('z', '<i4')])

>>> v.dtype=[('x','i4'),('y','i4'),('z','i4')]
>>> v['x']
array([[9, 5, 2]])

如您所见,虽然我的原始x数组包含[9,4,7],但我没有尝试堆叠数组然后索引'x'返回原始x数组。有没有办法做到这一点,还是我错了?

4

5 回答 5

15

一种方法是

wtype=np.dtype([('x',x.dtype),('y',y.dtype),('z',z.dtype)])
w=np.empty(len(x),dtype=wtype)
w['x']=x
w['y']=y
w['z']=z

请注意,randint 返回的每个数字的大小取决于您的平台,因此在我的机器上我有一个 int64,即“i8”,而不是 int32,即“i4”。这种另一种方式更便携。

于 2013-07-03T21:05:58.060 回答
3

你想使用np.column_stack

import numpy as np

x = np.random.randint(10,size=3)
y = np.random.randint(10,size=3)
z = np.random.randint(10,size=3)

w = np.column_stack((x, y, z))
w = w.ravel().view([('x', x.dtype), ('y', y.dtype), ('z', z.dtype)])

>>> w
array([(5, 1, 8), (8, 4, 9), (4, 2, 6)], 
      dtype=[('x', '<i4'), ('y', '<i4'), ('z', '<i4')])
>>> x
array([5, 8, 4])
>>> y
array([1, 4, 2])
>>> z
array([8, 9, 6])
>>> w['x']
array([5, 8, 4])
>>> w['y']
array([1, 4, 2])
>>> w['z']
array([8, 9, 6])
于 2013-07-03T21:16:13.393 回答
1

要在所选答案的基础上构建,您可以使此过程动态化:

  • 你首先循环你的数组(可以是单列)
  • 然后循环遍历列以获取数据类型
  • 您使用这些数据类型创建空数组
  • 然后我们重复这些循环来填充数组

设置

# First, let's build a structured array
rows = [
    ("A", 1),
    ("B", 2),
    ("C", 3),
]
dtype = [
    ("letter", str, 1),
    ("number", int, 1),
]
arr = np.array(rows, dtype=dtype)

# Then, let's create a standalone column, of the same length:
rows = [
    1.0,
    2.0,
    3.0,
]
dtype = [
    ("float", float, 1)
]
new_col = np.array(rows, dtype=dtype)

解决问题

# Now, we dynamically create an empty array with the dtypes from our structured array and our new column:
dtypes = []
for array in [arr, new_col]:
    for name in array.dtype.names:
        dtype = (name, array[name].dtype)
        dtypes.append(dtype)
new_arr = np.empty(len(new_col), dtype=dtypes)

# Finally, put your data in the empty array:
for array in [arr, new_col]:
    for name in array.dtype.names:
        new_arr[name] = array[name]

希望能帮助到你

于 2019-11-11T10:53:45.710 回答
0

您可能需要查看 numpy 的记录数组以供此用途:

“Numpy 提供了强大的功能来创建结构或记录的数组。这些数组允许人们通过结构或结构的字段来操作数据。”

这是有关记录数组的文档:http: //docs.scipy.org/doc/numpy/user/basics.rec.html

您可以使用变量名称作为字段名称。

于 2013-07-03T22:07:35.083 回答
-2

使用字典

#!/usr/bin/env python

import numpy

w = {}
for key in ('x', 'y', 'z'):
    w[key] = np.random.randint(10, size=3)

print w
于 2013-07-03T21:10:29.967 回答