提取datetime 里面的 年月作为单独一列

 # 首先 使用to_datetime转化为 datetime64 格式
 df['date_column'] = pd.to_datetime(df['date_column'])
 # strftime转化
 df['mnth_yr'] = df['date_column'].apply(lambda x: x.strftime('%Y-%m'))     
    ```
效果如下图
![在这里插入图片描述](https://img-blog.csdnimg.cn/20201102200654847.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3RveXRhb2Jhb2xpZ2FuZGFp,size_16,color_FFFFFF,t_70#pic_center)

    
  

你可能感兴趣的:(pandas)