gpt4 book ai didi

r - 如何将日期范围打印为字符串?

转载 作者:行者123 更新时间:2023-12-05 00:31:52 27 4
gpt4 key购买 nike

我想使用 R 将日期范围打印为字符串。
以下是我所做的

> startDate <- as.Date("2005-02-02")
> endDate <- as.Date("2005-02-07")
> dates <- startDate:endDate
> dates
[1] 12816 12817 12818 12819 12820 12821

这里没有像打印 startDate 那样将日期显示为字符串
> startDate
[1] "2005-02-02"

它显示了时代。

我真正想要的是日期的字符串表示而不是纪元。
我什至尝试了以下没有任何运气
> as.character(dates)
[1] "12816" "12817" "12818" "12819" "12820" "12821"

如何打印日期字符串而不是纪元天数?

最佳答案

dates <- seq(startDate,endDate,by="day")
print(dates)

你可能想看看 ?seq.Date .

关于r - 如何将日期范围打印为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14157972/

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