gpt4 book ai didi

R日期格式,带有两位数的月份和日期

转载 作者:行者123 更新时间:2023-12-04 09:30:21 24 4
gpt4 key购买 nike

我需要将字符日期“2008-1-1”转换为数字 20080101,但我得到的是 200811,有人可以帮助我吗?非常感谢。这是我的代码:

year <- c(2008:2012)
mth <- c(1:5)
day <- c(1:5)
A <- data.frame(cbind(year,mth,day))
date.ch <- as.character(with(A, paste(year, mth, day, sep="-")))
date.n <- as.numeric(with(A, paste(year, mth, day, sep="")))

最佳答案

您可以使用 as.numeric(format(as.Date(date.ch), '%Y%m%d'))

[1] 20080101 20090202 20100303 20110404 20120505

关于R日期格式,带有两位数的月份和日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13259434/

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