我正在尝试将一列添加到numpy记录中。
这是我的代码:
import numpy
import numpy.lib.recfunctions
data=[[20140101,'a'],[20140102,'b'],[20140103,'c']]
data_array=numpy.array(data)
data_dtype=[('date',int),('type','|S1')]
data_rec=numpy.core.records.array(list(tuple(data_array.transpose())), dtype=data_dtype)
data_rec.date
data_rec.type
#Here, i will just try to make another field called copy_date that is a copy of the date , just as an example
y=numpy.lib.recfunctions.append_fields(data_rec,'copy_date',data_rec.date,dtypes=data_rec.date.dtype,usemask=False)
现在看一下输出
>>> type(y)
<type 'numpy.ndarray'>
>>> y.date
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'numpy.ndarray' object has no attribute 'date'
>>> y.copy_date
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'numpy.ndarray' object has no attribute 'copy_date'
y不再是类似
的记录>>> type(data_rec)
<class 'numpy.core.records.recarray'>
我似乎失去了记录能力,即通过属性调用字段。 如何正确地将列添加到记录中并能够调用字段?
另外,如果有人能告诉我上面代码中usemask选项的作用,我会很高兴。
由于
答案 0 :(得分:1)
您可以通过asrecarray=True
从numpy.lib.recfunctions.append_fields
中重新获得重新定位。
e.g:
>>> y = numpy.lib.recfunctions.append_fields(data_rec, 'copy_date', data_rec.date, dtypes=data_rec.date.dtype, usemask=False, asrecarray=True)
>>> y.date
array([2, 2, 2])
>>> y
rec.array([(2, 'a', 2), (2, 'b', 2), (2, 'c', 2)],
dtype=[('date', '<i8'), ('type', '|S1'), ('copy_date', '<i8')])
>>> y.copy_date
array([2, 2, 2])
在numpy 1.6.1上进行测试