If I have a dataframe like this:

index   col1   col2
a        a1     a2
b        b1     b2
c        c1     b2

是否可以使用.drop()删除其中一列中具有突然值的行?
比如:df.drop(col2 = 'b2')

最佳答案

你需要boolean indexing

df = df[df.col2 != 'b2']

关于python - 如果列值从数据框中删除行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39135698/

10-12 18:12