lubridate (version 1.7.2)

now: The current time

Description

The current time

Usage

now(tzone = "")

Arguments

tzone

a character vector specifying which time zone you would like the current time in. tzone defaults to your computer's system timezone. You can retrieve the current time in the Universal Coordinated Time (UTC) with now("UTC").

Value

the current date and time as a POSIXct object

See Also

here()

Examples

Run this code
# NOT RUN {
now()
now("GMT")
now("")
now() == now() # would be TRUE if computer processed both at the same instant
now() < now() # TRUE
now() > now() # FALSE
# }

Run the code above in your browser using DataCamp Workspace