简体   繁体   English

熊猫从数据框中删除有条件的重复项

[英]Pandas remove duplicates with condition from data frame

Consider the following data frame: 考虑以下数据帧:

df = pd.DataFrame({
    'case_id': [1050, 1050, 1050, 1050, 1051, 1051, 1051, 1051],
    'elm_id': [101, 102, 101, 102, 101, 102, 101, 102],
    'cid': [1, 1, 2, 2, 1, 1, 2, 2],
    'fx': [736.1, 16.5, 98.8, 158.5, 272.5, 750.0, 333.4, 104.2],
    'fy': [992.0, 261.3, 798.3, 452.0, 535.9, 838.8, 526.7, 119.4],
    'fz': [428.4, 611.0, 948.3, 523.9, 880.9, 340.3, 890.7, 422.1]})

When printed looks like this: 打印时如下所示:

--- case_id cid elm_id fx fy fz 0 1050 1 101 736.1 992.0 428.4 1 1050 1 102 16.5 261.3 611.0 2 1050 2 101 98.8 798.3 948.3 3 1050 2 102 158.5 452.0 523.9 4 1051 1 101 272.5 535.9 880.9 5 1051 1 102 750.0 838.8 340.3 6 1051 2 101 333.4 526.7 890.7 7 1051 2 102 104.2 119.4 422.1

I need to remove rows where duplicate values exist in the following two columns subcase and elm_id and retain the row with the highest cid . 我需要删除以下两列subcaseelm_id存在重复值的行,并保留具有最高cid的行。 The data should look like this: 数据应如下所示:

--- case_id cid elm_id fx fy fz 0 1050 2 101 98.8 798.3 948.3 1 1050 2 102 158.5 452.0 523.9 2 1051 2 101 333.4 526.7 890.7 3 1051 2 102 104.2 119.4 422.1

I'm new to pandas. 我是熊猫新手。 Looking at other similar questions, I tried using .groupby() and max() like this: df2 = df.groupby(['case_id', 'elm_id']).max()['cid'].reset_index() . 看看其他类似的问题,我尝试使用.groupby()max()这样: df2 = df.groupby(['case_id', 'elm_id']).max()['cid'].reset_index() However I lost my columns fx , fy and fz . 但是我丢失了fxfyfz列。 I feel like I'm close, I just don't know where to look next. 我觉得我已经接近了,我只是不知道下一步要去哪里。

You'll need sort_values + drop_duplicates : 您将需要sort_values + drop_duplicates

df.sort_values('cid', ascending=False).drop_duplicates(['case_id', 'elm_id'])

   case_id  cid  elm_id     fx     fy     fz
2     1050    2     101   98.8  798.3  948.3
3     1050    2     102  158.5  452.0  523.9
6     1051    2     101  333.4  526.7  890.7
7     1051    2     102  104.2  119.4  422.1

Another way to this: 另一种方法是:

df[(df.duplicated(subset=['subcase','elm_id']))&(df['cid']>1)]

   case_id  cid  elm_id     fx     fy     fz
2     1050    2     101   98.8  798.3  948.3
3     1050    2     102  158.5  452.0  523.9
6     1051    2     101  333.4  526.7  890.7
7     1051    2     102  104.2  119.4  422.1

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM