如何在日期时间 pandas 中的月份数字(填充)中添加零
how to add a zero in month number (padding) in datetime pandas
我在 pandas 数据框中有一列作为日期时间。使用此功能:
data['yearMonth'] = data.ts_placed.map(lambda x: '{year}-{month}'.format(year=x.year,month=x.month))
我将日期时间对象从
2012-08-06 10:25:39
到
2012-8
我需要的是将对象获取为
2012-08
你可以使用 string formatting:
data['yearMonth'] = data.ts_placed.map(lambda x: '{year}-{month:02}'.format(year=x.year,month=x.month))
或者,如果 x
是 pandas 时间戳或 datetime.datetime
,请使用 strftime
:
data['yearMonth'] = data.ts_placed.map(lambda x: x.strftime('%Y-%m'))
我在 pandas 数据框中有一列作为日期时间。使用此功能:
data['yearMonth'] = data.ts_placed.map(lambda x: '{year}-{month}'.format(year=x.year,month=x.month))
我将日期时间对象从
2012-08-06 10:25:39
到
2012-8
我需要的是将对象获取为
2012-08
你可以使用 string formatting:
data['yearMonth'] = data.ts_placed.map(lambda x: '{year}-{month:02}'.format(year=x.year,month=x.month))
或者,如果 x
是 pandas 时间戳或 datetime.datetime
,请使用 strftime
:
data['yearMonth'] = data.ts_placed.map(lambda x: x.strftime('%Y-%m'))