基于时间戳的Python Pandas查找值

时间:2018-09-21 10:40:16

标签: python pandas timestamp

我有一个熊猫DataFrame,看起来像这样:

 product month
 apple  Jan-18
 pear   Jan-18
 banana Jan-18
 apple  Jan-18
 pear   Feb-18
 apple  Feb-18
 banana Feb-18

我创建了自己的参考表,如下所示:

id product     start       end    weight
1  apple    01/01/2011  31/01/2018 heavy
1  apple    01/02/2018  31/12/2020 small
2  banana   01/01/2015  31/01/2018 heavy
2  banana   01/02/2018  31/12/2020 small
3  pear     01/01/2016  31/12/2020 heavy

参考表始终以每月的第一天和最后一天开始。 “权重”字段随时间缓慢变化。例如,苹果和香蕉已经随着时间而改变。日期31/12/2020表示当前是产品的有效尺寸。

我需要根据时间戳将参考表中的“权重”与产品上的DataFrame合并。我需要得到这个:

 product month weight
 apple  Jan-18 heavy
 pear   Jan-18 heavy
 banana Jan-18 heavy
 apple  Jan-18 heavy
 pear   Feb-18 heavy
 apple  Feb-18 small
 banana Feb-18 small

我的困难是我不知道从哪里开始。我的DataFrame和参考表中的日期字段是datetime64 [ns]

1 个答案:

答案 0 :(得分:0)

在ref_df中创建一个新列,其结构与ref_df的month列

合并新创建的列上的两个数据框

def month_conversion(x):
    month_list = ['Jan','Feb','Mar','Apr','May','June','July','Aug','Sep','Oct','Nov','Dec']
    return month_list[int(x.month)-1] 

ref_df['year'] = ref_df['start'].head().map(lambda x: str(x.year)[-2:])

ref_df['month'] = ref_df.loc[0:5,'start'].map(month_conversion)

ref_df['common_key'] = ref_df['month'] +'-' +ref_df['year']
my_df['month'] = my_df['month'].astype(str)
final_df = ref_df.merge(my_df,left_on=['common_key','product'],right_index=['month','product'],suffixes=('_merge',''))