删除特定值下的数据帧中的行

时间:2018-02-14 14:10:37

标签: python pandas

Heyhey,我有以下数据框:

df1:
col1 col2 col3 col4 
0    31    53   82
1    23    73   32 
2    35    34   12 
3    36    13   24 
4    23    93   36 

我想删除col1值为2或者为smaler的所有行,所以它看起来像:

df1:
col1 col2 col3 col4 
3    36    13   24 
4    23    93   36 

我该怎么做?谢谢!

1 个答案:

答案 0 :(得分:1)

请保留价值高于2的那些:

df1 = df1.loc[df1.col1 > 2]