Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在转换格式为“Mar.01”的日期,我认为使用标准格式规则进行转换很简单,但我有一个问题。
例如,如果我生成这样的日期:
format(Sys.Date(), "%b%y") [1] "May13"
我无法使用相同的模式将其转换回日期对象::
as.Date(format(Sys.Date(), "%b%y"),"%b%y") [1] NA
我尝试以\\相同的结果转义后一种格式术语 - NA。我错过了什么?
\\
NA
您可能需要在约会中包含一天。你可以paste()在一天内解决这个问题。
paste()
x <- paste0(1, format(Sys.Date(), "%b%y")) as.Date(x, "%d%b%y")