gpt4 book ai didi

r - R中的格式日期(年-月)

转载 作者:行者123 更新时间:2023-12-04 09:33:41 27 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Converting year and month ("yyyy-mm" format) to a date?

(7 个回答)


4年前关闭。




是否可以将以下数字格式化为年月
我的条目如下:

1402
1401
1312

意思是 2014 年 2 月。2014 年 1 月和 2013 年 12 月。

我试过:

date <- 1402
date <- as.Date(as.character(date), format = "%y%m")

但我得到一个 NA 作为输出。

最佳答案

zoo包有"yearmon"直接处理年/月对象的类:

library(zoo)
nums <- c(1402, 1401, 1312)
ym <- as.yearmon(as.character(nums), "%y%m")

给予:
> ym
[1] "Feb 2014" "Jan 2014" "Dec 2013"

关于r - R中的格式日期(年-月),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21916503/

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