日期格式错误字符串不是标准的明确格式

时间:2015-08-03 19:43:31

标签: r

JAN-15"到POSIxct

as.POSIXct(c("5-JAN-15"),tz="GMT")

我收到此错误

Error in as.POSIXlt.character(x, tz = tz) : 
  character string is not in a standard unambiguous format

1 个答案:

答案 0 :(得分:1)

必须指定格式。

as.POSIXct("5-JAN-15", format="%d-%h-%y", tz="GMT")
#[1] "2015-01-05 GMT"