code_300[‘HISTORY_DATE‘] = code_300[‘HISTORY_DATE‘].map(str)
code_300[‘HISTORY_DATE‘] = pd.to_datetime(code_300[‘HISTORY_DATE‘], format=‘%Y-%m-%d‘)
1.map函数可以为series所用,pandas可以用applymap函数适用于整个pandas,博客参考:https://blog.csdn.net/u010814042/article/details/76401133/
2.to_datetime函数可以将pandas的20180902这种直接格式化为日期格式,博客参考:https://blog.csdn.net/mhywoniu/article/details/78513935
原文地址:https://www.cnblogs.com/Rvin/p/9663377.html
时间: 2024-10-13 06:46:55