ymd_hms
From lubridate v0.1
by Hadley Wickham
Parse dates that appear in standard POSIXt order...
Parse dates that appear in standard POSIXt order
Usage
ymd_hms(...)
Arguments
- ...
- a character vector of dates in year, month, day, hour, minute, second format
Details
Transforms dates stored as character vectors in year, month, day,
hour, minute, second format to POSIXct objects. ymd_hms() recognizes
all non-alphanumeric separators of length 1 with the exception of
".". ymd_hms() automatically assigns the Universal Coordinated Time
Zone (UTC) to the parsed date. This time zone can be changed with
force_tz
.
Value
- a vector of POSIXct date-time objects
See Also
Examples
x <- c("2010-04-14-04-35-59", "2010-04-01-12-00-00")
ymd_hms(x)
# [1] "2010-04-14 04:35:59 UTC" "2010-04-01 12:00:00 UTC"
y <- c("2011-12-31 12:59:59", "2010-01-01 12:00:00")
ymd_hms(y)
# [1] "2011-12-31 12:59:59 UTC" "2010-01-01 12:00:00 UTC"}
Community examples
Looks like there are no examples yet.