numpy.genfromtxt:delimiter =','无法拆分字符串

时间:2013-01-21 08:51:12

标签: python numpy genfromtxt

我不明白为什么numpy.genfromtxt没有正确地使用delimiter=","拆分以下字符串,而它适用于我的块中的大多数其他字符串。

chunk[12968]
Out[143]: '2901869281,3279442095,2012-12-15T23:00:00.003Z,Sacramento,CA,R#3817874,United States,38.583,-121.498,11, 8, 6, 5, 1, 0, 2, 3, 3, 5, 3, 3, 2, 2, 6, 6, 1, 2, 3, 0, 1, 1, 0, 0, 2, 2, 2, 2, 1, 0, 0, 2, 1, 0, 1, 1, 2, 0, 3, 1, 1, 1, 1, 0, 0, 4, 0, 0, 0, 1, 3, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 9, 0, 0, 0, 2, 3, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0,130\n'

我期待一个形状数组(110,),但得到以下

genfromtxt([chunk[12968]],delimiter=",",dtype=np.int64)
Out[142]: 
array([2901869281, 3279442095,         -1,         -1,         -1,
               -1], dtype=int64)

请注意,我使用izip_longest中的itertools以这种方式读取大块* csv:

with open('events.csv','r') as:
    for chunk in izip_longest(*[f] *50000):
          ...

感谢您的帮助。

1 个答案:

答案 0 :(得分:7)

genfromtxt()comments参数默认为'#',因此输入中#之后的所有内容都会被忽略:

2901869281,3279442095,2012-12-15T23:00:00.003Z,Sacramento,CA,R#3817874,United States,...
                                                              ^ start of comment