ymd {ymd} | R Documentation |
Convert 'YMD' format integer or string to Date
Description
Transform integer or strings vectors in 'YMD' format to Date objects. It intends to only support limited formats (no separator or one of '.', ' ', '-' and '/' separators). See the possible formats in examples.
Usage
ymd(x, ...)
Arguments
x |
An integer or string vector in 'YMD' format. Double values without the decimal part are allowed. |
... |
The same as |
Value
A Date object. When the parse fails for certain input,
the value returned would be NA
, silently.
Examples
ymd(c(210326, 19981225))
ymd(c("2020/1/8", "20 1 7", "1998.7.1", "1990-02-03"))
ymd(210420, 180322)
[Package ymd version 0.1.0 Index]