gpt4 book ai didi

r - 在 lubridate 中使用 wday 的法语名称

转载 作者:行者123 更新时间:2023-12-04 12:37:00 25 4
gpt4 key购买 nike

带有选项 label = TRUE 的 lubridate 包中的 wday() 函数返回星期几的英文名称。我想知道是否可以用另一种语言获得星期几的名称。有什么选择吗?

最佳答案

不是没有编写自己的方法。

一周中的几天在 lubridate:::wday.numeric 中用英语硬编码

labels <- c("Sunday", "Monday", "Tuesday", "Wednesday", 
"Thursday", "Friday", "Saturday")

您可以调整我的回答 here 中的代码并用您选择的语言的名称替换英文名称。
# assuming x is your Date
c("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday")[as.POSIXlt(x)$wday + 1]

编辑:

这是一个更接近 lubridate 的版本
labels <- c("dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi")
ordered(as.POSIXlt(x)$wday + 1, levels=1:7, labels=labels)

关于r - 在 lubridate 中使用 wday 的法语名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17836966/

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