Nothing
Sys.setenv("TZ"="Australia/Sydney")
library(anytime)
anytime:::setTZ("Australia/Sydney")
isWindows <- Sys.info()[["sysname"]] == "Windows"
isRelease <- length(unclass(utils::packageVersion("anytime"))[[1]]) == 3
refD <- as.Date("2015-01-01")
refT <- as.POSIXct(as.POSIXlt("2015-01-01"))
expect_equivalent(refD, anydate(20150101))
expect_equivalent(refD, anydate("2015/01/01"))
if (!isWindows && !isRelease) expect_equivalent(refT, anytime(20150101, oldHeuristic=TRUE))
if (!isWindows && !isRelease) expect_equivalent(refT, anytime("2015/01/01"))
expect_equivalent(refD, anydate("2015/01/01", tz="CET"))
expect_equivalent(refD, anydate("2015/01/01", tz="Australia/Sydney"))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.