R语言 如何从字符格式转换为日期格式?[duplicate]

zu0ti5jz  于 2022-12-06  发布在  其他
关注(0)|答案(2)|浏览(186)

此问题在此处已有答案

Convert string to date, format: "dd.mm.yyyy"(4个答案)
What are the "standard unambiguous date" formats for string-to-date conversion in R?(7个答案)
4天前关闭。
对于我的数据集,Date变量的日期格式如下所示:19-Feb-03我想将列中上述字符格式的日期更改为日期格式。(因为我稍后必须进行时间序列分析)
我尝试使用as.Date()方法,但它不起作用。

f2uvfpb9

f2uvfpb91#

x <- '19-Feb-03'

lubridate::ymd(x)

"2019-02-03"
h79rfbju

h79rfbju2#

不知道19是年还是日,可以试试润滑剂套餐

x<-"19-Feb-03"

library(lubridate)

ymd(x)
dmy(x)

相关问题