0

让你有一个像这样的对象:

> dput(maturityDate)
"3/6/2018"

这只是一个文本字符串,它表示 M/D/YYYY 格式的日期。

以下命令返回:

> as.Date(maturityDate)
[1] "0003-06-20"

这显然不是我想要的输出。

知道如何将其强制转换为Date通常处理的格式的对象xts吗?

4

1 回答 1

1
as.Date("3/6/2018",format="%m/%d/%Y")
于 2013-05-10T08:37:25.940 回答