簡體   English   中英

使用來自另一個數據幀的 if 條件在 Pandas 數據幀中創建一個新列

[英]create a new column in pandas dataframe using if condition from another dataframe

我有兩個數據框如下

transactions

    buy_date    buy_price
0   2018-04-16  33.23
1   2018-05-09  33.51
2   2018-07-03  32.74
3   2018-08-02  33.68
4   2019-04-03  33.58

cii

    from_fy     to_fy       score
0   2001-04-01  2002-03-31  100
1   2002-04-01  2003-03-31  105
2   2003-04-01  2004-03-31  109
3   2004-04-01  2005-03-31  113
4   2005-04-01  2006-03-31  117

在交易數據cii_score我需要根據以下條件創建一個新列cii_score

如果transactions['buy_date']介於cii['from_fy']cii['to_fy']transactions['cii_score']cii['score']

我試過列表理解,但它不好。

請求您的意見來解決這個問題。

首先,我們設置您的 dfs。 注意我在這個簡短的例子中修改了transactions中的日期以使其更有趣

import pandas as pd
from io import StringIO
trans_data = StringIO(
    """
,buy_date,buy_price
0,2001-04-16,33.23
1,2001-05-09,33.51
2,2002-07-03,32.74
3,2003-08-02,33.68
4,2003-04-03,33.58
    """
)

cii_data = StringIO(
    """
,from_fy,to_fy,score
0,2001-04-01,2002-03-31,100
1,2002-04-01,2003-03-31,105
2,2003-04-01,2004-03-31,109
3,2004-04-01,2005-03-31,113
4,2005-04-01,2006-03-31,117    
    """
)
tr_df = pd.read_csv(trans_data, index_col = 0)
tr_df['buy_date'] = pd.to_datetime(tr_df['buy_date'])

cii_df = pd.read_csv(cii_data, index_col = 0)
cii_df['from_fy'] = pd.to_datetime(cii_df['from_fy'])
cii_df['to_fy'] = pd.to_datetime(cii_df['to_fy'])

主要是下面的計算:對於tr_df每個行索引,找到cii_df中滿足條件的行的索引。 下面計算這個匹配,列表的每個元素都等於cii_df的適當行索引:

match = [ [(f<=d) & (d<=e) for f,e in zip(cii_df['from_fy'],cii_df['to_fy']) ].index(True) for d in tr_df['buy_date']]
match

產生

[0, 0, 1, 2, 2]

現在我們可以合並了

tr_df.merge(cii_df, left_on = np.array(match), right_index = True)

以便我們得到


    key_0 buy_date  buy_price   from_fy to_fy       score
0   0   2001-04-16  33.23   2001-04-01  2002-03-31  100
1   0   2001-05-09  33.51   2001-04-01  2002-03-31  100
2   1   2002-07-03  32.74   2002-04-01  2003-03-31  105
3   2   2003-08-02  33.68   2003-04-01  2004-03-31  109
4   2   2003-04-03  33.58   2003-04-01  2004-03-31  109

score列就是你要求的

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM