gpt4 book ai didi

python-3.x - Pandas 将带有年份整数的列转换为日期时间

转载 作者:行者123 更新时间:2023-12-01 11:18:55 25 4
gpt4 key购买 nike

我遇到了一些问题 转换列(数据类型:int64)进入 日期时间 与 Pandas 合作。

原始数据:

Year
2015
2014
...
2010

期望的结果:
Year
2015-01-01
2014-01-01
...
2010-01-01

我目前的结果:
Year
1970-01-01 00:00:00.000002015
1970-01-01 00:00:00.000002014
...
1970-01-01 00:00:00.000002010

我试过了:
data.Year = pd.to_datetime(data.Year)
data.Year = pd.to_datetime(data.Year, format='%Y-%m-%d')

谢谢

最佳答案

使用 format='%Y'

In [225]: pd.to_datetime(df.Year, format='%Y')
Out[225]:
0 2015-01-01
1 2014-01-01
2 2010-01-01
Name: Year, dtype: datetime64[ns]

细节
In [226]: df
Out[226]:
Year
0 2015
1 2014
2 2010

关于python-3.x - Pandas 将带有年份整数的列转换为日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46658232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com