我正在尝试将日期(例如
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
如何从日期中获取周数的正确年份?
好吧,抱歉,我没有正确查看
strftime
的文档。答案是:
strftime("2024-12-30", "%G-%V")
[1] "2025-01"