我正在尝试使用可以使用 python 通过列名访问的二维数组。数据来自数据库,它可能有不同的类型和空值。
NoneType
元组中不允许出现,所以我尝试用 np.nan 替换它们。
如果数据库中没有空值,则这段代码有效。但是,我的最终目标是拥有一个蒙面数组,但我什至无法创建一个数组。
import MySQLdb
import numpy
connection = MySQLdb.connect(host=server, user=user, passwd=password, db=db)
cursor = connection.cursor()
cursor.execute(query)
results = list(cursor.fetchall())
dt = [('cig', int), ('u_CIG', 'S10'), ('e_ICO', float), ('VCO', int)]
for index_r, row in enumerate(results):
newrow = list(row)
for index_c, col in enumerate(newrow):
if col is None:
newrow[index_c] = numpy.nan
results[index_r] = tuple(newrow)
x = numpy.array(results, dtype=dt)
产生的错误是:
x = numpy.array(results, dtype=dtypes)
ValueError: cannot convert float NaN to integer
执行 fetchall 后,结果包含如下内容:
[(10L,
'*',
Decimal('3.47'),
180L),
(27L,
' ',
Decimal('7.21'),
None)]
知道如何解决这个问题吗?谢谢!