熊猫索引问题

时间:2020-08-29 09:37:27

标签: python pandas

我在加载数据时使用熊猫将制表符分隔的文件加载时遇到了问题。它将第一列分配为索引,并且整个数据向左移动。结果,抽象列具有NaN值。如果我对数据帧执行reset_index,它将删除索引。如何解决此问题。

data = pd.read_csv(file_path, sep='\t')
data.head()

enter image description here

添加TSV文件的屏幕截图 enter image description here

2 个答案:

答案 0 :(得分:1)

请尝试以下代码...

data = pd.read_csv(file_path, sep='\t')
data.drop(index=0, inplace=True)
data.head()

答案 1 :(得分:0)

根据文档,在读取CSV时设置index_col=False可用于强制熊猫不要将第一列用作索引。

Reference