繁体   English   中英

如何从DataFrame的日期列中提取月份名称和年份

[英]How to Extract Month Name and Year from Date column of DataFrame

我有以下 DF

45    2018-01-01
73    2018-02-08
74    2018-02-08
75    2018-02-08
76    2018-02-08

我想以以下格式以简单的方式提取月份名称和年份:

45    Jan-2018
73    Feb-2018
74    Feb-2018
75    Feb-2018
76    Feb-2018

我使用了返回"2018-01"格式的df.Date.dt.to_period("M")

将日期从对象转换为实际日期时间并使用 dt 访问您需要的内容。

import pandas as pd

df = pd.DataFrame({'Date':['2019-01-01','2019-02-08']})

df['Date'] = pd.to_datetime(df['Date'])

# You can format your date as you wish
df['Mon_Year'] = df['Date'].dt.strftime('%b-%Y')

# the result is object/string unlike `.dt.to_period('M')` that retains datetime data type.

print(df['Mon_Year'])

首先使用将列转换为日期时间数据类型

sales_df['Date'] = pd.to_datetime(sales_df['Date'])

那么你可以做

sales_df['Month'] = sales_df['Date'].dt.month_name(locale='English')

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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