lubridate (version 1.3.0)

ms: Create a period with the specified number of minutes and seconds

Description

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 ".".

Usage

ms(..., quiet = FALSE)

Arguments

...
character or numeric vectors of minute second pairs
quiet
logical. When TRUE function evalueates without displaying customary messages.

Value

  • a vector of class Period

See Also

hms, hm

Examples

Run this code
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

Run the code above in your browser using DataCamp Workspace