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