获取日期中周数对应的年份?

问题描述 投票:0回答:1

我正在尝试将日期(例如

2024-12-30
)格式化为年份和周数(例如
2025-01
)。

我已经尝试过

strftime(... , "%Y-%V")
,但这在几周内给了我错误的年份,例如:

strftime("2024-12-30", "%Y-%V")
[1] "2024-01"  # should be 2025-01, as December 30 is in the first week of 2025

如何从日期中获取周数的正确年份?

r date
1个回答
0
投票

好吧,抱歉,我没有正确查看

strftime
的文档。答案是:

strftime("2024-12-30", "%G-%V")
[1] "2025-01"
© www.soinside.com 2019 - 2024. All rights reserved.