我有一个大的制表符分隔数据文件,我想在python中使用pandas“read_csv或'read_table'函数读取它。当我读这个大文件时,它显示以下错误,即使关闭后“index_col”值。
>>> read_csv("test_data.txt", sep = "\t", header=0, index_col=None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas/io/parsers.py", line 187, in read_csv
return _read(TextParser, filepath_or_buffer, kwds)
File "/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas/io/parsers.py", line 160, in _read
return parser.get_chunk()
File "/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas/io/parsers.py", line 613, in get_chunk
raise Exception(err_msg)
Exception: Implicit index (columns 0) have duplicate values [372, 1325, 1497, 1636, 2486,<br> 2679, 3032, 3125, 4261, 4669, 5215, 5416, 5569, 5783, 5821, 6053, 6597, 6835, 7485, 7629, 7684, 7827, 8590, 9361, 10194, 11199, 11707, 11782, 12397, 15134, 15299, 15457, 15637, 16147, 17448,<br> 17659, 18146, 18153, 18398, 18469, 19128, 19433, 19702, 19830, 19940, 20284, 21724, 22764, 23514, 25095, 25195, 25258, 25336, 27011, 28059, 28418, 28637, 30213, 30221, 30574, 30611, 30871, 31471, .......
我以为我的数据中可能有重复的值,因此使用grep将其中一些值重定向到文件中。
grep "9996744\|9965107\|740645\|9999752" test_data.txt > delnow.txt
现在,当我读取此文件时,它会被正确读取,如下所示。
>>> read_table("delnow.txt", sep = "\t", header=0, index_col=None)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 20 entries, 0 to 19
Data columns:
0740645 20 non-null values
M 20 non-null values
BLACK/CAPE VERDEAN 20 non-null values
这里发生了什么?我正在努力寻求解决方案,但无济于事。
我还在unix中尝试了'uniq'命令,看看是否存在重复行,但找不到任何行。
它是否必须使用块大小?
我正在使用以下版本的pandas
>>> pandas.__version__
'0.7.3'
>>>
答案 0 :(得分:1)
已安装的pandas最新版本。
我现在可以阅读了。
>>> import pandas
>>> pandas.__version__
'0.8.1'