如何在Python中将年-月-日转换为年?
因此,我将此列在一个数据框架中,该列具有以下形状的4896行数据:
2018-10-24
2014-04-10
2008-05-21
...
我想将这些数据仅转换或将这些数据转换为几年(如2018.15) - >将日常和月份转换为YEAR时间,只有几年!
我该怎么办? 太感谢了!!
In: 2018-10-24
Out: 2018.56 (for example)
So I have this column in a dataframe that has 4896 rows of datatimes in this shape:
2018-10-24
2014-04-10
2008-05-21
...
And I would like to transform or convert this data to years only (like 2018.15) -> convert the day and month to year time and have only the years!
How can I do so??
Thank you so much!!
In: 2018-10-24
Out: 2018.56 (for example)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅使用基本 Python(因为您没有指定您有 pandas 数据框 - pandas 有特定函数来使用日期时间对象执行计算):
示例输出:
Using just base Python (as you didn't specify that you have a pandas dataframe - pandas has specific functions to perform calculations with datetime objects):
Sample output: