我想将下面的数据类型浮点数转换为日期时间格式:
df
Date
0 NaN
1 NaN
2 201708.0
4 201709.0
5 201700.0
6 201600.0
Name: Cred_Act_LstPostDt_U324123, dtype: float64
pd.to_datetime(df['Date'],format='%Y%m.0')
ValueError: 时间数据 201700.0 与格式 '%Y%m.0' 不匹配(匹配)
我如何将这些没有月份信息的行转换为 yyyy01 作为默认值?
相关分类