如何在 R 中修复字符日期并向其添加零?

发布于 2025-01-11 05:28:01 字数 355 浏览 0 评论 0原文

我有一个数据集,它的所有日期变量都搞乱了。所有列都是字符。它们看起来像这样:

name <- c(“Ana”, “Maria”, “Rachel”, “Julia”)
date_of_birth <- c(“9/8/1997”, “22/3/1966”, “24/10/1969”, “25/6/2019”)

data <- as.data.frame(cbind(name, date_of_bieth))

我需要将这些日期转换为 dd/mm/yyyy 格式。它们已经按这个顺序排列,但是当 dd 或 mm 只有一位数字时,我需要添加零。

例如,“9/8/1997”应为“09/08/1997”。

I have a dataset that all of it’s date variables are messed up. All of the columns are characters. They look like this:

name <- c(“Ana”, “Maria”, “Rachel”, “Julia”)
date_of_birth <- c(“9/8/1997”, “22/3/1966”, “24/10/1969”, “25/6/2019”)

data <- as.data.frame(cbind(name, date_of_bieth))

I need to turn those dates into dd/mm/yyyy format. They are already in this order, but I need to add zero when dd or mm has only one digit.

For example, “9/8/1997” should be “09/08/1997”.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

も让我眼熟你 2025-01-18 05:28:01

我们可以试试这个

> format(as.Date(date_of_birth, format = "%d/%m/%Y"), "%d/%m/%Y")
[1] "09/08/1997" "22/03/1966" "24/10/1969" "25/06/2019"

We can try this

> format(as.Date(date_of_birth, format = "%d/%m/%Y"), "%d/%m/%Y")
[1] "09/08/1997" "22/03/1966" "24/10/1969" "25/06/2019"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文