简体   繁体   中英

Converting a pandas dataframe into year from datetime

df['Feedback Year']= df['Feedback Date'].strftime("%B")

错误:

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

Try:

df['Feedback Year']= df['Feedback Date'].dt.strftime("%B")

Or

df['Feedback Year']= df['Feedback Date'].apply(lambda x: x.strftime('%B')) 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM