Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在复杂的代码中,我无法使用索引删除 pandas 行。这是一个简化的代码:
我们声明了一个 pandas df:我有一个来自 csv 文件的数据框:
dataset.head()
如您所见,我删除了 index=0 的行但无法使用索引删除其他行:
dataset.drop(dataset.index[2],inplace=True) dataset[dataset.index == 2]
我就地删除。我不明白。你能帮我解决这个先验的基本问题吗?非常感谢。西奥
用这个:
dataset = dataset[dataset.index != 2]