赞
踩
data中date列(sysdate)提取其中的年月日信息到新的列(date_key)
data['date_key'] = data.sysdate.map(lambda x: x.strftime('%Y-%m-%d'))
data