我正在尝试将下面数据框中的日期系列data$Date
转换为时间序列数据类型,但我在下面不断收到此错误。在尝试转换之前,我已经确定我有一个日期格式,所以我不明白为什么转换没有发生。
> data["Date"] <- as.Date(data[,4], format="%d/%m/%Y")
> data["Date"] < as.xts(data["Date"])
> Error in as.POSIXlt.character(x, tz, ...) :
character string is not in a standard unambiguous format
str(data)
'data.frame': 91867 obs. of 6 variables:
$ Industry : Factor w/ 53 levels "","Accounting and Tax",..: 7 38 45 7 48 8 16 30 30 47 ...
$ Date : Date, format: "2015-01-05" "2015-01-05" "2015-01-05" ...
我查看了this post和this post,并尝试了他们的解决方案,但都没有奏效。
有什么建议吗?