Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在R中,我可以使用以下方法将日期解析为 Lubridate 格式:
R
d <- ymd("2013-02-15")
如何以yyyyMMdd格式输出,例如:
yyyyMMdd
20130215
等效的 .NET 命令将是:
.ToString("yyyyMMdd")
我知道这个问题的答案很简单,但我花了最后一个小时试图找到任何关于使用 Lubridate 输出日期的参考,但到目前为止没有成功。
format(d, "%Y%m%d")
产量
> format(d, "%Y%m%d") [1] "20130215"