lubridate (version 1.8.0)

now: The current day and time

Description

The current day and time

Usage

now(tzone = "")

today(tzone = "")

Value

now - the current datetime as a POSIXct object

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

Examples

Run this code
now()
now("GMT")
now("")
now() == now() # would be TRUE if computer processed both at the same instant
now() < now() # TRUE
now() > now() # FALSE
today()
today("GMT")
today() == today("GMT") # not always true
today() < as.Date("2999-01-01") # TRUE  (so far)

Run the code above in your browser using DataLab