简体   繁体   English

Pandas 给定公共列的两个不同大小的数据框之间的算术

[英]Pandas arthmetic between two different sized dataframes given common columns

DF 1东风1

| ColA     | Colb           | Stock    | Date       |
| -------- | -------------- | -------- | ---------- |
| A        | 1              | 3        | 2022-26-12 |
| B        | 2              | 3        | 2022-26-12 |
| C        | 3              | 3        | 2022-26-12 |

DF 2东风2

| ColA     | Colb           | Sales    | Date       |
| -------- | -------------- | -------- | ---------- |
| A        | 1              | 1        | 2022-26-12 |
| B        | 2              | 1        | 2022-26-12 |
| C        | 3              | 1        | 2022-26-12 |

Given any number of columns to join on, how do you do Dataframe arithmetic in pandas, for instance if I wanted to subtract the above two Dataframes to get something like this给定任意数量的列加入,你如何在 pandas 中进行 Dataframe 算术,例如,如果我想减去上面的两个数据帧得到这样的东西

STOCK AT END OF THE DAY当天结束时的库存

| ColA     | Colb           | Stock    | Date       |
| -------- | -------------- | -------- | ---------- |
| A        | 1              | 2        | 2022-26-12 |
| B        | 2              | 2        | 2022-26-12 |
| C        | 3              | 2        | 2022-26-12 |

So stock - sales given all the common columns, in this case所以 stock - sales 给定所有公共列,在这种情况下

Edit: (Since I was told off) The SQL equivalent of what I want in this case would like this if my SQL is correct:编辑:(因为我被告知)如果我的 SQL 是正确的,那么 SQL 相当于我在这种情况下想要的东西:

SELECT
    DF1.ColA,
    DF1.Colb,
    DF1.Date,
    DF1.Stock - coalesce(DF2.Sales, 0)
FROM
    DF1
    LEFT JOIN DF2
        on
            DF1.ColA = DF2.ColA and
            DF1.Colb = DF2.Colb and
            DF1.Date = DF2.Date

If they have the same number of rows and columns then do something like that:如果它们的行数和列数相同,则执行类似的操作:

df3 = df1[['ColA', 'Colb','Date']]
df3['Stock'] = df1.Stock - df2.Sales

However, if they are different merge them then do what you want:但是,如果它们不同,请合并它们,然后执行您想要的操作:

df3= pd.merge(df1, df2, on='ColA', how='inner')
df3['Stock'] = df3.Stock - df3.Sales

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

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