Remove rows in python less than a certain value

后端 未结 3 664
庸人自扰
庸人自扰 2020-12-25 12:01

I feel like this question must have been answered by someone before, but I can\'t find an answer on stack overflow!

I have a dataframe result that looks

3条回答
  •  天涯浪人
    2020-12-25 12:23

    I have another suggestion, which could help

    df3 = result.drop(result[result['Value'] < 10].index, inplace = True)
    

提交回复
热议问题