lubridate (version 0.1)

hms: Create a period with the specified hours, minutes, and seconds...

Description

Create a period with the specified hours, minutes, and seconds

Usage

hms(...)

Arguments

...
a character vector of hour minute second triples

Value

  • a vector of period objects

Details

Transforms a character string into a period object with the specified number of hours, minutes, and seconds. hms() recognizes all non-alphanumeric separators of length 1 with the exception of ".".

See Also

hm, ms

Examples

Run this code
x <- c("09:10:01", "09:10:02", "09:10:03")
hms(x)
# [1] 9 hours, 10 minutes and 1 second   9 hours, 10 minutes and 2 seconds   9 hours, 10 minutes and 3 seconds
hms("7 6 5")
# [1] 7 hours, 6 minutes and 5 seconds
hms("7,6,5")
# [1] 7 hours, 6 minutes and 5 seconds}

Run the code above in your browser using DataCamp Workspace