gpt4 book ai didi

r - 在 dplyr 链中转换 Excel 日期格式

转载 作者:行者123 更新时间:2023-12-02 17:11:42 25 4
gpt4 key购买 nike

我正在加载一个 Excel 文件,其中有一列将日期存储为整数(例如 43000 是 2017-09-22)。我尝试将答案应用于 this question这样:

df = df %>%
mutate(date = as.Date(date, origin = "1899-12-30"))

但是我有以下错误:

Error in mutate_impl(.data, dots) : Evaluation error: character string is not in a
standard unambiguous format. Calls: (...)

我搜索了这个问题,所有结果都是关于错误地将字符串输入指定为 as.Date 但在这种情况下,输入是一个整数。

最佳答案

刚刚发现问题:日期以某种方式加载为字符串而不是整数。这解决了我的问题:

df = df %>%
mutate(date = as.Date(as.numeric(date), origin = "1899-12-30"))

关于r - 在 dplyr 链中转换 Excel 日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48893085/

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