hm
From lubridate v1.2.0
by Garrett Grolemund
Create a period with the specified number of hours and minutes
Transforms a character or numeric vectors into a period object with the specified number of hours and minutes. Arbitrary text can separate hours and minutes.
- Keywords
- period
Usage
hm(...)
Arguments
- ...
- character or numeric vectors of hour minute pairs
Value
- a vector of class
Period
See Also
Examples
x <- c("09:10", "09:02", "1:10")
hm(x)
# [1] 9 hours and 10 minutes 9 hours and 2 minutes 1 hour and 10 minutes
hm("7 6")
# [1] 7 hours and 6 minutes
hm("6,5")
# [1] 6 hours and 5 minutes
Community examples
Looks like there are no examples yet.