Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
266 views
in Technique[技术] by (71.8m points)

python - Convert column of date objects in Pandas DataFrame to strings

How to convert a column consisting of datetime64 objects to a strings that would read 01-11-2013 for today's date of November 1.

I have tried

df['DateStr'] = df['DateObj'].strftime('%d%m%Y')

but I get this error

AttributeError: 'Series' object has no attribute 'strftime'

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As of version 17.0, you can format with the dt accessor:

df['DateStr'] = df['DateObj'].dt.strftime('%d%m%Y')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...