Sys.timeDate {timeDate} | R Documentation |
Returns the system time as an object of class "timeDate"
.
Sys.timeDate(FinCenter = "")
FinCenter |
a character string with the location of the financial center named as "continent/city". |
a "timeDate"
object
## Not run:
## direct
Sys.timeDate()
# Local Time in Zurich
Sys.timeDate(FinCenter = "Zurich")
## transformed from "POSIX(c)t" with timeDate()
timeDate(Sys.time())
# Local Time in Zurich
timeDate(Sys.time(), FinCenter = "Zurich")
## End(Not run)