as.Date <- function (x, ...) {
## for plain numeric input, call zoo:::as.Date.numeric
if (!is.object(x) && is.numeric(x)) as.Date.numeric(x, ...)
else UseMethod("as.Date")
}
as.Date.numeric <- function (x, origin, ...) {
if (missing(origin)) origin <- "1970-01-01"
if (identical(origin, "0000-00-00")) origin <- as.Date("0000-01-01", ...) - 1
as.Date(origin, ...) + x
}
.as_Date_default <- function(x, ...) base::as.Date(x, ...)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.