Extracting just Month and Year separately from Pandas Datetime column

后端 未结 11 1620
抹茶落季
抹茶落季 2020-11-22 09:09

I have a Dataframe, df, with the following column:

df[\'ArrivalDate\'] =
...
936   2012-12-31
938   2012-12-29
965   2012-12-31
966   2012-12-31
967   2012-1         


        
11条回答
  •  盖世英雄少女心
    2020-11-22 09:34

    Thanks to jaknap32, I wanted to aggregate the results according to Year and Month, so this worked:

    df_join['YearMonth'] = df_join['timestamp'].apply(lambda x:x.strftime('%Y%m'))
    

    Output was neat:

    0    201108
    1    201108
    2    201108
    

提交回复
热议问题